Adding suspend, a generator-based control flow library.

Suspend is a generator-based control-flow for Node that is designed to play nice with callbacks, promises, and thunks.  It's available on npm as [suspend](https://www.npmjs.org/package/suspend), and the code is available on [GitHub](https://github.com/jmar777/suspend).
This commit is contained in:
Jeremy Martin
2014-09-12 11:50:11 -04:00
parent a126b7c726
commit b4e23276fd

View File

@@ -215,6 +215,7 @@ Inspired by the [awesome](https://github.com/sindresorhus/awesome) list thing.
- [async](https://github.com/caolan/async) - Provides straight-forward, powerful functions for working with asynchronousity. - [async](https://github.com/caolan/async) - Provides straight-forward, powerful functions for working with asynchronousity.
- Generators - Generators
- [co](https://github.com/visionmedia/co) - The ultimate generator based flow-control goodness. - [co](https://github.com/visionmedia/co) - The ultimate generator based flow-control goodness.
- [suspend](https://github.com/jmar777/suspend) - Generator-based control flow that plays nice with callbacks, promises, and thunks.
- Promises - Promises
- [native-promise-only](https://github.com/getify/native-promise-only) - A polyfill for native ES6 Promises. - [native-promise-only](https://github.com/getify/native-promise-only) - A polyfill for native ES6 Promises.
- [Bluebird](https://github.com/petkaantonov/bluebird) - A fully featured promise library with focus on innovative features and performance. - [Bluebird](https://github.com/petkaantonov/bluebird) - A fully featured promise library with focus on innovative features and performance.