Skip to content

Instantly share code, notes, and snippets.

@YutaWatanabe
Created September 14, 2014 01:16
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 YutaWatanabe/bdce3082a4cdbdffc6bb to your computer and use it in GitHub Desktop.
Save YutaWatanabe/bdce3082a4cdbdffc6bb to your computer and use it in GitHub Desktop.
Getting started with Express
var express = require('express');
var app = express();
app.get('/', function(req, res){
res.send('Hello World');
}).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment