Skip to content

Instantly share code, notes, and snippets.

@creaux
Created September 28, 2016 10:43
Show Gist options
  • Save creaux/8a3d4ebec12d1d99e197ed3e90158109 to your computer and use it in GitHub Desktop.
Save creaux/8a3d4ebec12d1d99e197ed3e90158109 to your computer and use it in GitHub Desktop.
Static server for serving files from the same path.
import express from 'express';
const app = express();
app.use(express.static(__dirname));
app.listen(8083, () => {
console.log('Static server is runing on port 8083');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment