On Github julianduque / nodejs-intro-talk
(una breve introducción a Node.js)
Developer by Passion
Primer Movimiento
JIFASNIF (Javascript is Fun, And so Node is Fun)
Google Chrome JavaScript Engine
data-intensive real-time applications that run across distributed devices
Segundo Movimiento
Tercer Movimiento
Cuarto y último Movimiento
minimal and flexible Node.js web framework
An adaptable and modular framework for Web and CLI applications
API creation
Framework creation
CLI Applications
Full Stack Web Framework
Built on top Express
MVC Framework
Built on top Express
var http = require('http'); http.createServer(function(req, res) { res.writeHead(200); res.write("Hello Sena!"); res.end(); }).listen(8080);