buzzers/server.js

23 lines
656 B
JavaScript
Raw Normal View History

2018-03-13 20:25:39 +00:00
// server.js
// where your node app starts
// init project
const express = require("express");
const app = express();
2018-03-13 20:25:39 +00:00
// we've started you off with Express,
2018-03-13 20:25:39 +00:00
// but feel free to use whatever libs or frameworks you'd like through `package.json`.
// http://expressjs.com/en/starter/static-files.html
app.use(express.static("public"));
2018-03-13 20:25:39 +00:00
// http://expressjs.com/en/starter/basic-routing.html
app.get("/", function(request, response) {
response.sendFile(__dirname + "/views/index.html");
2018-03-13 20:25:39 +00:00
});
// listen for requests :)
const listener = app.listen(process.env.PORT, function() {
console.log("Your app is listening on port " + listener.address().port);
2018-03-13 20:25:39 +00:00
});