-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
44 lines (40 loc) · 1.38 KB
/
app.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
'use strict';
// Initialize New Relic Node.js agent
if (process.env.NEW_RELIC_LICENSE_KEY) {
require('newrelic');
}
// Load the libraries and run the modules for the application
let directory = __dirname + '/modules/';
let modules = [
[require('dragonnodejs-restify'), [
['errors'],
['server', {
options: {},
plugins: (restify, server) => {
server.use(restify.acceptParser(server.acceptable));
server.use(restify.authorizationParser());
server.use(restify.bodyParser({ mapParams: false }));
server.use(restify.CORS());
server.use(restify.gzipResponse());
server.use(restify.queryParser({ mapParams: false }));
},
listen: [process.env.PORT]
}],
['package', require(__dirname + '/package.json')],
['validators', (validator, errors) => [
['email', input => {
input = validator.trim(input);
if (!validator.isEmail(input)) {
throw new errors.BadRequestError('invalid email');
}
return input;
}],
['password', input => validator.trim(input)]
]]
]],
['example',
// Configuration for the module
]
];
let libraries = {};
require('dragonnodejs')(directory, modules, libraries);