-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathserver.js
39 lines (35 loc) · 1.1 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
'use strict';
const jayson = require('jayson');
const jsonParser = require('body-parser').json;
const express = require('express');
const app = express();
// create a plain jayson server
const server = new jayson.server({
add: function(numbers, callback) {
callback(null, Object.keys(numbers).reduce((sum, key) => sum + numbers[key], 0));
}
});
app.use(jsonParser()); // <- here we can deal with maximum body sizes, etc
app.use(function(req, res, next) {
const request = req.body;
// <- here we can check headers, modify the request, do logging, etc
server.call(request, function(err, response) {
if(err) {
// if err is an Error, err is NOT a json-rpc error
if(err instanceof Error) return next(err);
// <- deal with json-rpc errors here, typically caused by the user
res.status(400);
res.send(err);
return;
}
// <- here we can mutate the response, set response headers, etc
if(response) {
res.send(response);
} else {
// empty response (could be a notification)
res.status(204);
res.send('');
}
});
});
app.listen(3001);