
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
eslint-plugin-builtin-compat-test
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-builtin-compat-test 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.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.