pino
Version:
super fast, all natural json logger
37 lines (32 loc) • 988 B
JavaScript
const { test } = require('tap')
const { join } = require('path')
const { once } = require('events')
const { createReadStream } = require('fs')
const os = require('os')
const { promisify } = require('util')
const execa = require('execa')
const split = require('split2')
const stream = require('stream')
const pipeline = promisify(stream.pipeline)
const { Writable } = stream
test('eight million lines', async ({ equal, comment }) => {
const destination = join(
os.tmpdir(),
'_' + Math.random().toString(36).substr(2, 9)
)
const child = execa(process.argv[0], [join(__dirname, '..', 'fixtures', 'transport-many-lines.js'), destination])
await once(child, 'exit')
const toWrite = 8 * 1000000
let count = 0
await pipeline(createReadStream(destination), split(), new Writable({
write (chunk, enc, cb) {
if (count % (toWrite / 10) === 0) {
comment(`read ${count}`)
}
count++
cb()
}
}))
equal(count, toWrite)
})