mirror of
https://github.com/Lomanic/presence-button-web
synced 2024-11-14 17:57:29 +00:00
a0a314feb7
./server.js:728660/8
23 lines
657 B
JavaScript
23 lines
657 B
JavaScript
// server.js
|
|
// where your node app starts
|
|
|
|
// init project
|
|
const express = require('express');
|
|
const 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 :)
|
|
const listener = app.listen(process.env.PORT, function() {
|
|
console.log('Your app is listening on port ' + listener.address().port);
|
|
});
|