UNPKG

pino-http

Version:

High-speed HTTP logger for Node.js

11 lines (7 loc) 162 B
'use strict' const http = require('http') const server = http.createServer(handle) function handle (req, res) { res.end('hello world') } server.listen(3000)