async-csp
async-csp copied to clipboard
CSP style channels using ES7 async/await
What's the recommended way to make cancellable sort of scenarios in an application with async-csp? Basically, suppose we've got any number of things waiting for output from a channel, but...
Hi, Please make a new release and publish it to npm. I think at least commit "refactor: make natively runnable in nodejs 7.6+" is worth a new release. Thanks
I love CSP and think it may be a better approach than asynchronous iteration. For filtering channels, I’d prefer an approach that is different than constructor + callback. What do...
It’d be helpful if there was an API documentation (you could host it online via GitHub Pages). Generation tools include: * https://github.com/jsdoc3/jsdoc (the standard for doc comment syntax) * https://github.com/documentationjs/documentation...
It'd be great if we can add to the docs (README) some real-world practical examples (f.e. like @rauschma's [example](https://github.com/dvlsg/async-csp/issues/17) if `.filter()` were part of async-csp). Seeing the API docs may...
Thanks for this awesome library. Personally, I've found it to be the most friendly csp implementation for JS and enjoy using it. Is it already possible to have a channel...