Getting started with Express for node.js
Nuestro buen amigo Gustavo Machado nos comparte su:
Getting started with Express for node.js
Express is an MVC framework built on top of connect that obviously runs on node.js. Express simplifies making websites by adding a series of middleware that will handle the parsing of the requests, the routing, and finally the rendering of the views. I’ll show you how to do your first express.js app which will be extremely easy and simple to do.
First, create a folder for the app, and install the Express module with npm like this:
c:\node\testapp>npm intall express
Ver más aquí.
Saludos.
Fernando García Loera (Community Program Manager – Latin America Region)