Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

You can easily implement channels in ES6. I've done it and my implementation is probably 40-50 lines of code. You can then use async/await to simulate go routines. It's actually a bit nicer than go because of the way async coordinates with promises. You can more easily synchronise the routines (for example in situations where you might need a wait group in go).

I keep expecting someone to write one and put it up on NPM (I haven't looked recently, though). Perhaps I should clean up my and stick it up there. It provides a very nice abstraction of continuations. I did it merely as kata to show that continuations do not require concurrency.



I've read a few articles on implementing CSP in JavaScript, and there are definitely some packages available, e.g.

https://github.com/olahol/node-csp

https://github.com/ubolonton/js-csp

https://github.com/gozala/channel




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: