Created
February 8, 2013 12:24
-
-
Save renatosousafilho/4738699 to your computer and use it in GitHub Desktop.
Express-beginner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "express-beginner", | |
"description": "Apllication to show how to begin with express", | |
"version": "0.0.1", | |
"dependencies": { | |
"express": "3.x" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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