Skip to content

Instantly share code, notes, and snippets.

@crissdev
Created November 13, 2014 16:01
Show Gist options
  • Save crissdev/df0f6fd9e4b4c79a04bf to your computer and use it in GitHub Desktop.
Save crissdev/df0f6fd9e4b4c79a04bf to your computer and use it in GitHub Desktop.
4 lines dev web server
var express = require('express');
var app = express();
app.use(express.static(__dirname));
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment