-
-
Notifications
You must be signed in to change notification settings - Fork 683
/
Copy pathjson.js
76 lines (68 loc) · 1.92 KB
/
json.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
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
67
68
69
70
71
72
73
74
75
76
import http from 'node:http';
import util from 'node:util';
import formidable from '../src/index.js';
const PORT = 3000;
const server = http.createServer((req, res) => {
if (req.method !== 'POST') {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end(`Please POST a JSON payload to http://localhost:${PORT}/`);
return;
}
const form = formidable();
const fields = {};
form
.on('error', (err) => {
console.error(err);
res.writeHead(500, { 'Content-Type': 'text/plain' });
res.end(`error:\n\n${util.inspect(err)}`);
})
.on('field', (field, value) => {
console.log(field, value);
fields[field] = value;
})
.on('end', () => {
console.log('-> post done from "end" event');
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end(`received fields:\n\n${util.inspect(fields)}`);
});
form.parse(req);
});
server.listen(PORT, () => {
const chosenPort = server.address().port;
console.log(`Listening on http://localhost:${chosenPort}/`);
const body = JSON.stringify({
numbers: [1, 2, 3, 4, 5],
nested: { key: 'some val' },
});
const request = http.request(
{
host: 'localhost',
path: '/',
port: chosenPort,
method: 'POST',
headers: {
'Content-Type': 'application/json',
'content-length': body.length,
},
},
(response) => {
console.log('\nServer responded with:');
console.log('Status:', response.statusCode);
response.pipe(process.stdout);
response.on('end', () => {
console.log('\n');
process.exit();
});
// const data = '';
// response.on('data', function(chunk) {
// data += chunk.toString('utf8');
// });
// response.on('end', function() {
// console.log('Response Data:');
// console.log(data);
// process.exit();
// });
},
);
request.end(body);
});