
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
eslint-plugin-morecompat
Advanced tools
Checks built-in methods compatibility. It uses browser-compat-data to determine incompatible method calls.
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-builtin-compat:
$ npm install eslint-plugin-builtin-compat --save-dev
Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-builtin-compat globally.
Add builtin-compat to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": ["builtin-compat"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"builtin-compat/no-incompatible-builtins": 2
}
}
You can ignore certain built-ins, usually after adding a polyfill:
{
"settings": {
"builtin-compat-ignore": ["assign", "startsWith"]
}
}
Configure supported browsers in package.json (see browserslist):
{
"browserslist": ["last 1 versions", "not ie <= 8"]
}
Contributions are welcome! Just open an issues with any idea or pull-request if it is no-brainer. Make sure all tests and linting rules pass.
FAQs
Checks built-in objects compatibility
We found that eslint-plugin-morecompat 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.

Security News
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.