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.
fast-fast-series
Advanced tools
Run as fast as possible your functions
npm i --save fast-fast-series
const ffs = require('fast-fast-series')
function func1 (obj, next) {
obj.a += 1
setTimeout(next, 0, null, obj)
}
function func2 (obj, next) {
obj.b = 6
setTimeout(next, 2, null, obj)
}
function func3 (obj, next) {
obj.c = 77
setTimeout(next, 0, null, obj)
}
const f = ffs([
func1,
func2,
func3,
function (arg) {
// ok
console.log(arg)
}
], function (err) {
// error case
console.log(err)
})
f({ a: 3 })
Output:
{ a: 4, b: 6, c: 77 }
Licensed under MIT.
FAQs
Fast fast series
The npm package fast-fast-series receives a total of 1 weekly downloads. As such, fast-fast-series popularity was classified as not popular.
We found that fast-fast-series 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.