Skip to content

Commit 781dd86

Browse files
committedJun 8, 2022
performance improvements
- Get rid of try/finally, that's no longer performant in node 16 and 18 - Handle OBJECTMODE up front, to avoid excess checks later - Remove reference to 'arguments' - Pull some common event handling into dedicated methods, to trim down generic/spread behavior in emit()
1 parent 5fac672 commit 781dd86

File tree

125 files changed

+764
-1131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+764
-1131
lines changed
 

‎bench/index.js

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
// if you go much higher the core streams just choke and take forever lol
22
const N = Math.floor(128*1024 / Math.PI)
33
const fs = require('fs')
4-
const { basename } = require('path')
5-
const impls = fs.readdirSync(__dirname + '/impls')
6-
.filter(f => /\.js$/.test(f)).map(f => basename(f, '.js'))
4+
// const { basename } = require('path')
5+
// const impls = fs.readdirSync(__dirname + '/impls')
6+
// .filter(f => /\.js$/.test(f)).map(f => basename(f, '.js'))
7+
const impls = [
8+
'baseline',
9+
'minipass-current',
10+
'extend-minipass-current',
11+
'core-extend-transform',
12+
'core-passthrough',
13+
]
714

815
const promiseSpawn = require('@npmcli/promise-spawn')
916

1017
const main = async () => {
11-
const [node, _, impl, cse, len] = process.argv
18+
const [node, _, impl, cse, len, type] = process.argv
1219
const opt = { stdioString: true, stdio: ['ignore', 'pipe', 'inherit'] }
1320
const results = {}
1421
if (impl === undefined) {
@@ -56,7 +63,8 @@ const main = async () => {
5663
str: {encoding:'utf8'},
5764
obj: {objectMode: true},
5865
}
59-
for (const [name, opt] of Object.entries(opts)) {
66+
const typeOpts = type ? [[type, opts[type]]] : Object.entries(opts)
67+
for (const [name, opt] of typeOpts) {
6068
await new Promise((res, rej) => {
6169
process.stderr.write(`${impl} ${cse} ${len} ${name} ... `)
6270
const { src, start, dest, dest2 } = setupPipeline(impl, len, cse, opt)

0 commit comments

Comments
 (0)
Please sign in to comment.