-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
37 lines (27 loc) · 1.08 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//express to run server
var express = require('express');
//start up an instance of app. This needs to go before any of the things below which are attached to the app
var app = express();
//connecting app to website folder which has index.html and sketch.js to run a website connected to this server/app
app.use(express.static('website'));
//cors for cross origin aloowance
var cors = require('cors');
app.use(cors());
//requring the node file read in system
var fs = require('fs')
//body-parser to work with json files
var bodyParser = require('body-parser');
app.use(bodyParser.json()); // support json encoded bodies
app.use(bodyParser.urlencoded({ extended: true })); // support encoded bodies
// Set up the server
var server = app.listen(process.env.PORT || 8000, listen);
// var server = app.listen(process.env.PORT || 3030, listen);
//callback to debug
function listen(){
var host = server.address().address;
var port = server.address().port;
console.log('Example app listening at http://' + host + ':' + port);
if (process.send) {
process.send('online');
}
}