Skip to content

Instantly share code, notes, and snippets.

@xola139
Created March 6, 2020 16:12
Show Gist options
  • Save xola139/fc3e373dd3608b41853274de818fa00b to your computer and use it in GitHub Desktop.
Save xola139/fc3e373dd3608b41853274de818fa00b to your computer and use it in GitHub Desktop.
var express = require("express");
var app = express();
app.use(express.static("dist"));
app.use((req,res)=>{
res.sendFile(path.join(__dirname, 'dist/index.html'));
});
var server = app.listen(8081, function(){
var port = server.address().port;
console.log("Server started at http://localhost:%s", port);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment