UNPKG

pino

Version:

super fast, all natural json logger

14 lines (10 loc) 289 B
'use strict' const fs = require('node:fs') const { once } = require('node:events') async function run (opts) { if (!opts.destination) throw new Error('kaboom') const stream = fs.createWriteStream(opts.destination) await once(stream, 'open') return stream } module.exports = run