Skip to content

Instantly share code, notes, and snippets.

@jdstaerk
Created December 28, 2018 18:35
Show Gist options
  • Select an option

  • Save jdstaerk/2586900fed9b0ba44819392f9de50c76 to your computer and use it in GitHub Desktop.

Select an option

Save jdstaerk/2586900fed9b0ba44819392f9de50c76 to your computer and use it in GitHub Desktop.
let express = require('express');
let app = express();
app.use(express.static('dist'));
app.listen(3000, () => {
console.log('Server is up and running!');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment