blob: 934b43671cac53495b23e5a2620b771859ea9830 (
plain)
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
|
const { spawn } = require('child_process');
/*
* Gets the local chain as minified version
*
* Returns:
* - A JSON array representing the nodes' arching-kaos-zchain
*
*/
function getZChain(req, res)
{
const command = spawn("ak", ["zchain", "--crawl"]);
response_string = "";
command.stdout.on("data", data => {
response_string = response_string + data;
});
command.stderr.on("data", data => {
console.log(`stderr: ${data}`);
});
command.on('error', (error) => {
console.log(`error: ${error.message}`);
});
command.on("close", code => {
res.send(JSON.parse(response_string)/*.reverse()*/);
console.log(`child process exited with code ${code}`);
});
};
module.exports = getZChain;
|