UNPKG
chainode
Version:
latest (1.0.0)
1.0.0
0.0.1
A private blockchain network based on node.js
github.com/davidemiceli/chainode
davidemiceli/chainode
chainode
/
web-console
/
backend
/
routes
/
status
/
health.js
7 lines
(5 loc)
•
135 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
;
// Monitoring server health status
module
.
exports
=
function
(
req, res, next
) {
return
res.
json
({
status
:
'active'
}); }