forked from apis-is/apis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
49 lines (42 loc) · 945 Bytes
/
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
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;
/**
* 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(dirPath, dirs, files){
if(files && dirPath.indexOf("/test") < 0){
files.forEach(function(file,key){
require('./'+dirPath+'/'+file);
});
}
});
/**
* 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);
});