This repository was archived by the owner on Aug 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path6-json-request.ts
66 lines (52 loc) · 1.48 KB
/
6-json-request.ts
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import Koa from 'koa';
import koaBody from 'koa-body';
import Router from 'koa-router';
import { Socket } from 'net';
const port: number = 9903;
// ---------------------------------------------
// server
// ---------------------------------------------
const app: Koa = new Koa();
const router: Router = new Router();
router.post('/api', koaBody(), (ctx) => {
console.log(`[server] received data from client:`);
console.log(JSON.stringify(ctx.request.body, null, 2));
ctx.body = {
echo: ctx.request.body,
};
});
app.use(router.routes());
app.listen(port, () => {
console.log(`[server] started: ${port}`);
});
// ---------------------------------------------
// client
// ---------------------------------------------
const client: Socket = new Socket();
client.connect(port, '127.0.0.1', () => {
console.log(`[client] connected`);
const data: string = JSON.stringify({
hello: 'world!',
});
const request: string = [
`POST /api HTTP/1.1`,
`Accept: */*`,
`Host: localhost:${port}`,
`Content-Length: ${data.length}`,
`Content-Type: application/json`,
`User-Agent: test-client`,
``,
data,
].join('\r\n');
console.log(`[client] request:`);
console.log(request.split('\r\n'));
client.write(request);
});
client.on('data', data => {
console.log(`[client] received data from server:`);
console.log(data.toString().split('\r\n'));
client.destroy();
});
client.on('close', () => {
console.log(`[client] connection closed`);
});