jongleberry

Results 313 comments of jongleberry

nice! i hate how the search input is at the bottom of the page right now. doesn't make sense to me. one thing i want are links at the top...

i'll probably make a https://github.com/jonathanong/node-frameworks for "frontend workflows", eventually. i.e. comparing component vs. `bower + requirejs + whatever-they-use-for-css`

we can do: ``` js function clone(source) { var out = Object.create(source.__proto__) for (...) } ``` or something.

no one seems to be maintaining this right now. would you like to maintain it?

why not use is-stream directly? because it is in es6?

an external dependency is preferred if maintained from a reliable author, I can try to look later

that's a good point, thanks! cc @kevinpeno

it's not from this package so I'm closing. I set `files` in the `package.json` and checked the latest package

a better way to do this is to create the callback with `app.callback()` and just create your own servers. ```js const fn = app.callback() http.createServer(fn) http2.createServer(fn) ```