Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
promise.waterfall
Advanced tools
Runs an array of promises in series, each passing their results to the next promise in the array.
Runs an array of promises in series, each passing their results to the next promise in the array.
$ npm install promise.waterfall --save
var promiseWaterfall = require('promise.waterfall')
function makeAdder (a) {
return function (b) {
b = b || 0
return Promise.resolve(a + b)
}
}
var addOne = makeAdder(1)
promiseWaterfall([
addOne // 1
addOne, // 2
addOne // 3
])
.then(console.log)
.catch(console.error)
promiseWaterfall(functions)
-> promise
Runs the array of functions in series, waiting for each to resolve and passing each result to the next function in the array.
Required
Type: array[function]
FAQs
Runs an array of promises in series, each passing their results to the next promise in the array.
The npm package promise.waterfall receives a total of 3,249 weekly downloads. As such, promise.waterfall popularity was classified as popular.
We found that promise.waterfall 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.