Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@adam-zacharski
Last active August 29, 2015 14: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 adam-zacharski/b69eafa4ac84718be29d to your computer and use it in GitHub Desktop.
Save adam-zacharski/b69eafa4ac84718be29d to your computer and use it in GitHub Desktop.
Node.JS Express Hello World
var express = require('express');
var app = express();
app.get('/', function(req, res){
res.send('hello world');
});
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment