Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
compose-iterator
Advanced tools
Fastest iterator for middleware composition. The biggest performance improvements for Koa middleware.
For koa-compose v3, https://github.com/koajs/compose/pull/57
compose
43,981 op/s » (fn * 1)
25,044 op/s » (fn * 2)
13,359 op/s » (fn * 4)
6,972 op/s » (fn * 8)
3,555 op/s » (fn * 16)
1,803 op/s » (fn * 32)
920 op/s » (fn * 64)
466 op/s » (fn * 128)
231 op/s » (fn * 256)
113 op/s » (fn * 512)
55 op/s » (fn * 1024)
27 op/s » (fn * 2048)
13 op/s » (fn * 4096)
6 op/s » (fn * 8192)
compose
206,669 op/s » (fn * 1)
202,517 op/s » (fn * 2)
209,224 op/s » (fn * 4)
208,893 op/s » (fn * 8)
205,962 op/s » (fn * 16)
205,885 op/s » (fn * 32)
205,316 op/s » (fn * 64)
206,602 op/s » (fn * 128)
205,352 op/s » (fn * 256)
201,229 op/s » (fn * 512)
188,328 op/s » (fn * 1024)
167,314 op/s » (fn * 2048)
182,743 op/s » (fn * 4096)
174,105 op/s » (fn * 8192)
$ npm install compose-iterator
'use strict'
const Promise = require('any-promise')
const iterator = require('compose-iterator')
/**
* Expose compositor.
*/
module.exports = compose
/**
* Compose `middleware` returning
* a fully valid middleware comprised
* of all those which are passed.
*
* @param {Array} middleware
* @return {Function}
* @api public
*/
function compose (middleware) {
if (!Array.isArray(middleware)) throw new TypeError('Middleware stack must be an array!')
for (const fn of middleware) {
if (typeof fn !== 'function') throw new TypeError('Middleware must be composed of functions!')
}
/**
* Make an iterator for middleware.
*/
middleware[Symbol.iterator] = iterator
// Alternative iteration.
const iter = middleware[Symbol.iterator]()
/**
* @param {Object} context
* @return {Promise}
* @api public
*/
return function (context, next) {
try {
return Promise.resolve(iter.next(context, next).value)
} catch (err) {
return Promise.reject(err)
}
}
}
const co = require('co')
const compose = require('./compose')
function wait (ms) {
return new Promise((resolve) => setTimeout(resolve, ms || 1))
}
var arr = []
var stack = []
stack.push(function * (context, next) {
arr.push(1)
yield wait(1)
yield next()
yield wait(1)
arr.push(6)
})
stack.push(function * (context, next) {
arr.push(2)
yield wait(1)
yield next()
yield wait(1)
arr.push(5)
})
stack.push(function * (context, next) {
arr.push(3)
yield wait(1)
yield next()
yield wait(1)
arr.push(4)
})
compose(stack.map((fn) => co.wrap(fn)))({}).then(function () {
console.log(arr.toString() === [1, 2, 3, 4, 5, 6].toString())
})
FAQs
Fastest iterator for middleware composition
The npm package compose-iterator receives a total of 2 weekly downloads. As such, compose-iterator popularity was classified as not popular.
We found that compose-iterator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.