Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
bep53-range
Advanced tools
Also works in the browser with browserify! This module is used by WebTorrent.
npm install bep53-range
Parse Magnet URI extension (BEP53) range and return all included values.
const bep53Range = require('bep53-range')
const range = ['1-3', '6', '11-13']
const values = bep53Range.parse(range)
console.log(values) // [1, 2, 3, 6, 11, 12, 13]
Compose Magnet URI extension (BEP53) range from all included values.
const bep53Range = require('bep53-range')
const values = [1, 2, 3, 6, 11, 12, 13]
const range = bep53Range.compose(values)
console.log(range) // ['1-3', '6', '11-13']
MIT. Copyright (c) Julen Garcia Leunda and WebTorrent, LLC.
FAQs
Magnet URI extension (BEP53) range implementation
The npm package bep53-range receives a total of 9,409 weekly downloads. As such, bep53-range popularity was classified as popular.
We found that bep53-range demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers 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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.