Skip to content

Latest commit

 

History

History
36 lines (33 loc) · 827 Bytes

README.md

File metadata and controls

36 lines (33 loc) · 827 Bytes

#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.

Table of Contents

  1. CommonJS
  2. NPM and package.json
  3. module (require, exports, module.exports)
  4. Command Line Tool
  5. File Operation * stream * buffer * path * Traverse Directory (sync vs async) * encoding(utf-8, BOM)
  6. Server * http * https * URL * Query String * Zlib * Net
  7. Process * Process * Child Process * Cluster
  8. Async * callback * return * traverse * exception * domain
  9. Source * Offical Website * Callback Hell