chore: benchmarks and readme update
This commit is contained in:
parent
fda3920a3f
commit
7092dc6a70
9 changed files with 115 additions and 18 deletions
7
benchmark/test.js
Normal file
7
benchmark/test.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
const http = require('http');
|
||||
const server = http.createServer((req, res) => {
|
||||
res.statusCode = 200;
|
||||
res.setHeader('Content-Type', 'application/json');
|
||||
res.end("{}");
|
||||
});
|
||||
server.listen(8083);
|
Loading…
Add table
Add a link
Reference in a new issue