Skip to content

Instantly share code, notes, and snippets.

@sdtsui
Created April 1, 2016 03:51
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 sdtsui/ee1e65d990a0d61280bff74974f628ff to your computer and use it in GitHub Desktop.
Save sdtsui/ee1e65d990a0d61280bff74974f628ff to your computer and use it in GitHub Desktop.
Simple Express Server
var express = require('express')
express().use('/',express.static(__dirname)).listen(8080);
console.log("Listening on 8080...");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment