-
Notifications
You must be signed in to change notification settings - Fork 268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace AsyncHandle with a proper Promise implementation #71
Comments
So I did some searching: I wasn't aware of this, but ES6 will get promises natively: http://www.html5rocks.com/en/tutorials/es6/promises/ Here are a few: Most promising ones seem then/promise and cujojs/when. Both are made to work in browser as well as node, both seem to focus on compliance with Promise/A+, both seem fairly minimal and fast. It does seem cujojs has a longer history, so it might be safer to go for that. I haven't used any of them consciously, so I'm only looking at their descriptions at this time. |
So I actually decided to get a bit crazy and implemented the Promises/A+ spec myself, in Lazy, which means
This will be in the next release, which I'm now thinking will probably be 0.4.0 as there have been quite a few changes since 0.3.2. |
Nice! Looking forward to the release. 0.4.0 does indeed sound good for what it brings. |
👍 for Promises/A+ |
Done in 0.4.0! |
No description provided.
The text was updated successfully, but these errors were encountered: