1
0
mirror of https://api.glitch.com/git/presence-button synced 2024-09-28 23:17:30 +00:00
presence-button-web-glitch/server.js
Glitch (hello-express) 406fcf36d0 🍕🌟 Checkpoint
./views/index.html:96831/368
./public/style.css:96831/36
./server.js:96831/437
2018-03-19 21:14:04 +00:00

23 lines
653 B
JavaScript

// server.js
// where your node app starts
// init project
var express = require('express');
var app = express();
// we've started you off with Express,
// 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'));
// http://expressjs.com/en/starter/basic-routing.html
app.get("/", function (request, response) {
response.sendFile(__dirname + '/views/index.html');
});
// listen for requests :)
var listener = app.listen(process.env.PORT, function () {
console.log('Your app is listening on port ' + listener.address().port);
});