forked from apis-is/apis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
54 lines (45 loc) · 1.11 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
var express = require('express'),
app = module.exports = express(),
config = require('./config'),
fileModule = require('file'),
cache = require('./lib/cache'),
cors = require('./lib/cors'),
EE = require('events').EventEmitter;
/**
* Set the spacing to 0 for shorter output
*/
app.set('json spaces', 0);
/**
* Create an event listener for app
*/
EE.call(app);
/*
* Built in parser to acces the body values
*/
app.use(express.bodyParser());
/**
* Cross-origin resource sharing
*/
app.use(cors());
/**
* Caching layer
*/
app.use(cache());
/**
* Set up endpoints
*/
fileModule.walkSync('./endpoints', function iterateEndpoints(dirPath, dirs, endpoints) {
if (endpoints && dirPath.indexOf('/test') < 0) endpoints.forEach(requireEndpoint);
function requireEndpoint(endpoint) {
if (endpoint.indexOf('.DS_Store') === -1) require('./' + dirPath + '/' + endpoint);
}
});
/**
* Start the server
*/
app.listen(config.port, function () {
app.emit('ready');
});
app.on('ready', function () {
if (!config.testing) console.log('Server running at port: ' + config.port);
});