Basics: A Really Simple Web Server % npm install express % express projectName % cd projectName && npm install % node app.js Server running at http://localhost:3000
node.js: The Less Good Parts ○ "Pyramid of Doom" ○ Core keeps changing ○ Too many options ○ Overkill for static sites ○ Scalability ○ Memory leaks (closures) ○ CoffeeScript, etc