Posts by chrisenytc • 47 points
3 posts
-
1
votes3
answers2138
viewsA: How to perform unit tests on nodejs
I recommend using the http://visionmedia.github.io/mocha and http://chaijs.com for unit testing using the TDD and BDD style for complete and effective testing. If you also need to test internal or…
-
0
votes3
answers8084
viewsA: CORS on Nodejs without the use of Frameworks
You can use the middleware https://npmjs.org/package/cors to enable CORS support easily and quickly.
-
2
votes2
answers1118
viewsA: Options to generate javascript library documentation
I use and recommend the http://yui.github.io/yuidoc is very easy to use and quite complete. It generates documentation from the comments in the code, in a format similar to Jsdoc: Classes /** *…