I'm a freelance programmer. visit my homepage at https://itgoldman.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// server serving index.html | |
var express = require("express"); | |
var path = require("path"); | |
var app = express(); | |
app.get("/", function(req, res) { | |
res.sendFile(path.join(__dirname, "./index.html")); | |
}); | |
app.listen(3000); | |
console.log("Express started on port 3000"); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.