-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp_dev.js
34 lines (29 loc) · 844 Bytes
/
app_dev.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
import { Hono } from 'hono'
const { execFile } = require('child_process');
const app = new Hono();
app.get('/route4', (c) => {
const query = c.req.query('req');
const child = execFile('bgpq3', ['-4', '-j', query], (error, stdout, stderr) => {
if (error) {
console.error(`exec error: ${error}`);
return c.json({status: '500', message: ` ${error}` })
}
return c.json(stdout)
});
});
app.get('/route6', (c) => {
const query = c.req.query('req');
const child = execFile('bgpq3', ['-6', '-j', query], (error, stdout, stderr) => {
if (error) {
console.error(`exec error: ${error}`);
return c.json({status: '500', message: ` ${error}` })
}
return c.json(stdout)
});
});
const port = 6999
console.log(`Running at http://localhost:${port}`)
export default {
port,
fetch: app.fetch,
}