Is there an equivalent to Jack for Narhwal implemented in nodejs?
Asked
Active
Viewed 1,265 times
2 Answers
3
Sort of, but not really. There's Kris Zyp's jsgi-node (installable as npm install jsgi
) at https://github.com/kriszyp/jsgi-node.
The most popular middleware-stacking thing in NodeJS is Connect. Rather than using connect directly, most people use Express.

Nicholas Riley
- 43,532
- 6
- 101
- 124

isaacs
- 16,656
- 6
- 41
- 31
-
Also, check out common-node, which uses fibers to emulate the sync APIs in commonjs. http://olegp.github.com/common-node/ – isaacs Feb 10 '12 at 02:32