Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
eslint-plugin-node-import
Advanced tools
Disallow imports of built-in Node.js modules without the `node:` prefix
Disallow imports of built-in Node.js modules without the node:
prefix
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-node-import
:
npm install eslint-plugin-node-import --save-dev
Add node-import
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["node-import"]
}
Then configure the (only) rule under the rules
section.
{
"rules": {
"node-import/prefer-node-protocol": 2
}
}
🔧 Automatically fixable by the --fix
CLI option.
Name | Description | 🔧 |
---|---|---|
prefer-node-protocol | Prefer using the node: protocol when importing Node.js builtin modules. | 🔧 |
This plugin is a composite of two different custom ESLint rules:
eslint-import-require-node-prefix
from this GitHub Gistprefer-node-protocol
from eslint-plugin-unicorn© 2023 Nikita Karamov
Licensed under the ISC License
This project is hosted on GitHub: https://github.com/kytta/eslint-plugin-node-import.git
FAQs
Disallow imports of built-in Node.js modules without the `node:` prefix
We found that eslint-plugin-node-import 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.