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

Node.js - A practical Introduction

Node.js - A practical Introduction

Talk given at Big Tech Day 5 in Munich on 15.06.2012.

Felix Geisendörfer

June 16, 2012
Tweet

More Decks by Felix Geisendörfer

Other Decks in Programming

Transcript

  1. 1 var http = require('http'); 2 3 http.createServer(function(req, res) {

    4 res.end('Hello World'); 5 }).listen(8080); hello world http server in node.js
  2. Features • TCP / UDP • HTTP / HTTPS •

    File System • Buffers (byte arrays) • DNS • Child Processes • Http / Https • Crypto • ZLIB • Readline / TTY / REPL
  3. ...

  4. ...