#NodeJS - beginner tutorial for nodejs.
There are tons of good tutorials about NodeJS online, so I won't re-write them here. I will give out a learning list, which I think is a good order to follow. The important step is highlight.
- CommonJS
- NPM and package.json
- module (require, exports, module.exports)
- Command Line Tool
- File Operation * stream * buffer * path * Traverse Directory (sync vs async) * encoding(utf-8, BOM)
- Server * http * https * URL * Query String * Zlib * Net
- Process * Process * Child Process * Cluster
- Async * callback * return * traverse * exception * domain
- Source * Offical Website * Callback Hell