Upgrade to Pro — share decks privately, control downloads, hide ads and more …

09 - Node.JS - OpenWebSchool

09 - Node.JS - OpenWebSchool

openwebschool

August 20, 2012
Tweet

More Decks by openwebschool

Other Decks in Programming

Transcript

  1. var http = require(‘http’); http.createServer(function (req, res) { res.writeHead(200, {

    ‘Content-Type’, ‘text/plain’ }); res.end(‘Hello World’); }).listen(3000);
  2. NPM