Skip to content

Instantly share code, notes, and snippets.

@renatosousafilho
Created February 8, 2013 12:24
Show Gist options
  • Save renatosousafilho/4738699 to your computer and use it in GitHub Desktop.
Save renatosousafilho/4738699 to your computer and use it in GitHub Desktop.
Express-beginner
{
"name": "express-beginner",
"description": "Apllication to show how to begin with express",
"version": "0.0.1",
"dependencies": {
"express": "3.x"
}
}
var express = require('express');
var app = express();
app.get("/", function(req, res){
res.send("Hello World \n");
});
app.listen(3000);
console.log("Application is running in http://localhost:3000");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment