Islam Sharabash
Islam Sharabash
I've been looking at using this library in a project and ran into this exact problem, there's not a safe time to cleanup a resource. An alternative to forcing streams...
Question about semantics. Will there be a way to differentiate between "values are no longer needed" and "this is the end of the stream, but continue to push values". In...
In particular I want to re-implement [unix-sort](https://github.com/Clever/unix-sort) using highland. The unix-sort library spawns the sort command and passes all the stream items to it. When it gets `_.nil` indicating end...
@jeromew as discussed [here](http://engineering.clever.com/2014/06/18/the-best-tool-for-the-join-scaling-node.js-with-unix/) unix sort makes temporary files so it doesn't have to hold everything in memory. @vqvu exactly -- not sure the best syntax for it, whether it...
@vqvu I dig that syntax. Still on the fence about having a separate error handler, though you can do that with the current api using `.errors`, it's just a bit...
As another datapoint, I ended up implementing the [unix-sort](https://github.com/ibash/highland-unix-sort) / [unix-join](https://github.com/ibash/highland-unix-join). `_.nil` is not back propagated so there could be some issue with slowly leaking resources.
After working with highland a bit more I think I prefer the syntax recommended here: https://github.com/caolan/highland/issues/172#issuecomment-69215140 I'm also wondering if the cancel is actually needed -- yes, you could waste...
In my comment above I linked to the chaining syntax -- I prefer it as well, sorry for the misunderstanding. +1 to doing as little as possible until there's a...
except for typescript nonsense, this seems to work: set a custom request client but with twilio's type ```typescript import twilio, { type RequestClient as TwilioRequestClient } from 'twilio' const client...
I found it easier to move to SortableJS actually: https://github.com/SortableJS/react-sortablejs