
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
a counter that will return decimal integers starting at 1 by default. optionally start the counter at another number and/or use a different radix
npm install incr
npm test
var Increment = require("incr")
var inc = new Increment()
console.log(inc.next()) // 1
console.log(inc.next()) // 2
console.log(inc.next()) // 3
inc.reset()
console.log(inc.next()) // 1
var inc = new Increment({start: 10})
console.log(inc.next()) // 11
console.log(inc.next()) // 12
console.log(inc.next()) // 13
var inc = new Increment({radix: 36})
console.log(inc.next()) // "1"
console.log(inc.next()) // "2"
console.log(inc.next()) // "3"
var inc = new Increment({start: 20, radix: 36})
console.log(inc.next()) // "l"
console.log(inc.next()) // "m"
console.log(inc.next()) // "n"
FAQs
increment a counter with optional radix
The npm package incr receives a total of 2 weekly downloads. As such, incr popularity was classified as not popular.
We found that incr 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.