martes, 10 de junio de 2014

Node.js y mongoDB: facil instalacion con Bitnami

Bitnami MEAN Stack provides a complete development environment for mongoDB and Node.js that can be deployed in one click. It includes the latest stable release of mongoDB, Express, Angular, Node.js, Git, PHP and RockMongo.
https://bitnami.com/stack/mean

Esto es JavaScript del Lado del Servidor Asincrónico y orientado al evento con callbacks en acción :-)
"En Node.js, todo corre en paralelo, excepto tu código".
http://www.nodebeginner.org/index-es.html


test Servidor basico:

var http = require("http");

function onRequest(request, response) {
  console.log("Peticion Recibida. bienvenido");
  response.writeHead(200, {"Content-Type": "text/html"});
  response.write("Hola pablo");
  response.end();
}

http.createServer(onRequest).listen(8888);

console.log("Servidor Iniciado. en 8888");