By Jordi Gomez jordi.gomez@skyscanner.net
Senior Software Engineer at Skyscanner www.skyscanner.net
Made with Reveal.js http://lab.hakim.se/reveal-js/
but I am passionate about researching new stuff
Source: wikipedia https://en.wikipedia.org/wiki/Node.js
Source: http://apps-masters.com/database/amazing-features-node-js-top-5-server-side-scripts/ Source: https://github.com/nodejs/node-v0.x-archive/tree/master/deps
$ npm search express
$ npm install express
$ npm uninstall express
$ npm install connect serve-static
var connect = require('connect');
var serveStatic = require('serve-static');
var server = connect().use(serveStatic(__dirname))
server.listen(8080);
$ node server.js
Source: http://stackoverflow.com/questions/6084360/using-node-js-as-a-simple-web-server
var http = require("http"),
url = require("url"),
path = require("path"),
fs = require("fs"),
memcached = require('memcached');
var error = function(response, status, err) {
response.writeHead(status, {"Content-Type": "text/plain"});
response.write(err + "\n");
response.end();
};
var success = function(response, data) {
response.writeHead(200);
response.write(data, "binary");
response.end();
};
var cache = new memcached('localhost:11211');
http.createServer(function(request, response) {
var uri = url.parse(request.url).pathname,
filename = path.join(process.cwd(), uri);
cache.get(filename, function(err, data) {
if (data !== undefined) return success(response, data);
fs.exists(filename, function(exists) {
if(!exists) return error(response, 404, "404 Not Found");
fs.readFile(filename, "binary", function(err, file) {
if(err) return error(response, 500, err);
cache.set(filename, file, 10, function (err) {
success(response, file);
});
});
});
});
}).listen(8080);
Source: http://blog.mixu.net/2011/02/01/understanding-the-node-js-event-loop/
function(base, cb) {
// Closure used in the callback.
var obj = new LeakObject();
var once = function(e) {
cb(e.type, obj);
base.removeListener('change', once);
};
base.on("change", once);
// obj will be freed!
}
if (cluster.isMaster) {
// Fork workers.
for (var i = 0; i < numCPUs; i++) {
cluster.fork();
}
} else {
http.Server(function(req, res) { ... }).listen(8000);
}
Source: http://stackoverflow.com/questions/2387724/node-js-on-multi-core-machines
With PHP, 1K concurrent, 100K completed
Source: http://www.hostingadvice.com/blog/comparing-node-js-vs-php-performance/
With Java (Paypal)
Source: https://www.paypal-engineering.com/2013/11/22/node-js-at-paypal/