-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
executable file
·34 lines (24 loc) · 876 Bytes
/
server.js
File metadata and controls
executable file
·34 lines (24 loc) · 876 Bytes
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
const express = require('express')
const app = express();
var bodyParser = require('body-parser'),
requireDir = require('require-dir'),
path = require('path');
app.use(bodyParser());
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: false}));
app.use(express.static(path.join(__dirname, 'client')));
var allowCrossDomain = function (req, res, next) {
res.header('Access-Control-Allow-Origin', '*');
res.setHeader('Content-Type', 'application/json');
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
res.header('Access-Control-Allow-Headers', 'Content-Type,x-username,x-token');
next();
};
app.use(allowCrossDomain);
app.get('/', function (req, res) {
res.sendfile( __dirname + '/client/index.html');
})
app.listen(8000, function(){
console.log('server is listening on port 8000');
})
module.exports = app;