Skip to content

Instantly share code, notes, and snippets.

@alancasagrande
Last active November 14, 2020 16:27
Show Gist options
  • Save alancasagrande/9c38c8cf09f2ef1ab4cd521a9e1a63ef to your computer and use it in GitHub Desktop.
Save alancasagrande/9c38c8cf09f2ef1ab4cd521a9e1a63ef to your computer and use it in GitHub Desktop.
const express = require("express");
const app = express();
app.use(express.static("dist"));
app.listen(8080);
console.log("Server running on http://localhost:8080");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment