-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.js
More file actions
48 lines (31 loc) · 1.21 KB
/
server.js
File metadata and controls
48 lines (31 loc) · 1.21 KB
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
38
39
40
41
42
43
44
45
46
47
// server.js
var express = require('express');
var mongoose = require('mongoose');
var app = express();
var bodyParser = require('body-parser');
var methodOverride = require('method-override');
var httpServer = require("http").createServer(app);
// config files
var db = require('./config/db');
// set our port
var port = 3000;
// connect to mongoDB
//mongoose.connect(db.url);
// parse application/json
app.use(bodyParser.json());
// parse application/vnd.api+json as json
app.use(bodyParser.json({ type: 'application/vnd.api+json' }));
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: true }));
// override with the X-HTTP-Method-Override header in the request. simulate DELETE/PUT
app.use(methodOverride('X-HTTP-Method-Override'));
//set the public folder of the app
app.use(express.static(__dirname + '/public'));
//load basic route for server
require('./server/routes/basic')(app);
// startup our app at http://localhost:3000
httpServer.listen(port);
// shoutout to the user
console.log('Server available at http://localhost:' + port);
// expose app
exports = module.exports = app;