(ws14) sasa matijasic - node.js i "novi" web

11

Click here to load reader

Upload: webstrategija

Post on 02-Jul-2015

481 views

Category:

Education


6 download

TRANSCRIPT

Page 1: (WS14) Sasa Matijasic - Node.js i "novi" web

Node ?

www.nodejs.org

Page 2: (WS14) Sasa Matijasic - Node.js i "novi" web

server side javascript

google chrome V8

cross platform

Page 3: (WS14) Sasa Matijasic - Node.js i "novi" web

PROS

● fast● C10K● asynchronous● libraries, npm● heroku, azure...● it's javascript

Page 4: (WS14) Sasa Matijasic - Node.js i "novi" web

CONS

● not stable yet● it's javascript

Page 5: (WS14) Sasa Matijasic - Node.js i "novi" web

Hello world PHPecho "Hello\n";sleep(5);echo "world\n";

Page 6: (WS14) Sasa Matijasic - Node.js i "novi" web

Hello world Pythonprint "Hello"time.sleep(5)print "world"

Page 7: (WS14) Sasa Matijasic - Node.js i "novi" web

Hello world NodesetTimeout(function () { console.log("world");}, 5000);console.log("Hello");

Page 8: (WS14) Sasa Matijasic - Node.js i "novi" web

Web servervar http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n');}).listen(80);

Page 9: (WS14) Sasa Matijasic - Node.js i "novi" web

npm install

● express, ...● ms-sql, mysql, postgresql,

oracle, ...● redis, mongo, ...● mustache, haml, ...● socket.io

Page 10: (WS14) Sasa Matijasic - Node.js i "novi" web

npmjs.org

"10942 total packages"

Page 11: (WS14) Sasa Matijasic - Node.js i "novi" web

Saša Matijašić

[email protected]

twitter: @returnnullgoogle+: selectnull.com/+