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

Webshaped

 Webshaped

Turbo charging your workflow with Node.js

Andrew Nesbitt

May 23, 2013
Tweet

More Decks by Andrew Nesbitt

Other Decks in Technology

Transcript

  1. var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type':

    'text/plain'}); res.end('Hello World\n'); }).listen(1337, '127.0.0.1'); console.log('Server running at http://127.0.0.1:1337/');
  2. Project scaffolding Grunt build process Live Reload Linting Web server

    Compress images Bower package management Javascript Unit Testing