Skip to content

Instantly share code, notes, and snippets.

@marr
Forked from Siedrix/app.js
Created March 1, 2014 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marr/9288290 to your computer and use it in GitHub Desktop.
Save marr/9288290 to your computer and use it in GitHub Desktop.
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Express.js Hello world');
});
app.listen(8000);
{
"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