Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
regexp-range
Advanced tools
create regex class range string
[一-十]
[⓪-㊿]
...
npm i regexp-range
import matchRange, { TABLE_RANGE } from 'regexp-range';
//console.log(TABLE_RANGE);
console.dir(matchRange('⓪', '㊿')); // => ['⓪' ... '㊿']
console.dir(matchRange('一', '十')); // => [ '一', '二', '三', '四', '五', '六', '七', '八', '九', '十' ]
console.dir(matchRange('零', '拾')); // => [ '零', '壱', '弐', '参', '肆', '伍', '陸', '柒', '捌', '玖', '拾' ]
console.dir(matchRange('二', '七', {
createRegExpString: true,
})); // => '二三四五六七'
console.dir(matchRange('二', '七', {
createRegExpString: true,
createRegExpClass: true,
})); // => '[二三四五六七]'
FAQs
create regex class range string `[一-十]` `[⓪-㊿]` ...
The npm package regexp-range receives a total of 981 weekly downloads. As such, regexp-range popularity was classified as not popular.
We found that regexp-range demonstrated a healthy version release cadence and project activity because the last version was released less than 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 found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
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.