Created
November 12, 2013 23:18
-
-
Save Siedrix/7440612 to your computer and use it in GitHub Desktop.
Basic hello world
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('Express.js Hello world'); | |
}); | |
app.listen(8000); |
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" : "hello-world", | |
"version" : "0.0.2", | |
"dependencies" : { | |
"express" : "3.4.4" | |
}, | |
"scripts": { | |
"start" : "app.js" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment