jeromew
jeromew
yes it would certainly be nice to have a cookbook for highland. The fact that highland works in the browser should make it easy. it could probably start with a...
Yes, sorry for the typo, here is an example showing the "bug" ``` js var _ = require('./lib/index.js') _([1,2,3,4,5]) .consume(function(err, x, push, next) { if (err !== null) { push(err);...
@vqvu the way I currently use highland is :ns - first, build a graph - then, pump Ideally, each "transform" would have its own setup/teardown + an awareness of the...
There is an open PR on sort : https://github.com/caolan/highland/pull/169 what benefit do you see of using the unix-sort memory-wise. In both case it seems to me that you need to...
Hello. can you improve the formatting of your issue ? "permission denied" means that the server refused to give you the permission. It is going to be hard to debug...
should this library be able to concatenate streams - a bit like what https://github.com/felixge/node-combined-stream ? if yes, I don't understand "concat-stream should never have any errors" because shouln't concat-stream handle...
@wannkunstbeikor sorry I realize I made a mistake when creating the fork and lost the files. I recreated them - opcode.json vi the generator in tools - structure.json out of...
I guess that those are border line case between errors that you can forget and business logic. When I created the issue, I was trying to make sure the the...
yes I think I remember reading that caolan does not favor using arity in general. I use streams as many operations that need to be done. some are in error,...