Gathering detailed insights and metrics for eslint-plugin-node
Gathering detailed insights and metrics for eslint-plugin-node
Gathering detailed insights and metrics for eslint-plugin-node
Gathering detailed insights and metrics for eslint-plugin-node
eslint-plugin-node-dependencies
ESLint plugin to check Node.js dependencies.
eslint-import-resolver-node
Node default behavior import resolution plugin for eslint-plugin-import.
eslint-plugin-node-import
Disallow imports of built-in Node.js modules without the `node:` prefix
eslint-webpack-plugin
A ESLint plugin for webpack
npm install eslint-plugin-node
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
962 Stars
391 Commits
171 Forks
17 Watching
2 Branches
36 Contributors
Updated on 22 Nov 2024
Minified
Minified + Gzipped
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-2.1%
775,030
Compared to previous day
Last week
4.6%
4,378,473
Compared to previous week
Last month
28.8%
16,594,051
Compared to previous month
Last year
0.4%
177,551,348
Compared to previous year
1
This project has been no longer maintained. Please consider to use https://github.com/eslint-community/eslint-plugin-n.
Additional ESLint's rules for Node.js
$ npm install --save-dev eslint eslint-plugin-node
>=8.10.0
>=5.16.0
Note: It recommends a use of the "engines" field of package.json. The "engines" field is used by node/no-unsupported-features/*
rules.
.eslintrc.json (An example)
1{ 2 "extends": [ 3 "eslint:recommended", 4 "plugin:node/recommended" 5 ], 6 "parserOptions": { 7 // Only ESLint 6.2.0 and later support ES2020. 8 "ecmaVersion": 2020 9 }, 10 "rules": { 11 "node/exports-style": ["error", "module.exports"], 12 "node/file-extension-in-import": ["error", "always"], 13 "node/prefer-global/buffer": ["error", "always"], 14 "node/prefer-global/console": ["error", "always"], 15 "node/prefer-global/process": ["error", "always"], 16 "node/prefer-global/url-search-params": ["error", "always"], 17 "node/prefer-global/url": ["error", "always"], 18 "node/prefer-promises/dns": "error", 19 "node/prefer-promises/fs": "error" 20 } 21}
package.json (An example)
1{ 2 "name": "your-module", 3 "version": "1.0.0", 4 "type": "commonjs", 5 "engines": { 6 "node": ">=8.10.0" 7 } 8}
Rule ID | Description | |
---|---|---|
node/handle-callback-err | require error handling in callbacks | |
node/no-callback-literal | ensure Node.js-style error-first callback pattern is followed | |
node/no-exports-assign | disallow the assignment to exports | ⭐️ |
node/no-extraneous-import | disallow import declarations which import extraneous modules | ⭐️ |
node/no-extraneous-require | disallow require() expressions which import extraneous modules | ⭐️ |
node/no-missing-import | disallow import declarations which import non-existence modules | ⭐️ |
node/no-missing-require | disallow require() expressions which import non-existence modules | ⭐️ |
node/no-new-require | disallow new operators with calls to require | |
node/no-path-concat | disallow string concatenation with __dirname and __filename | |
node/no-process-exit | disallow the use of process.exit() | |
node/no-unpublished-bin | disallow bin files that npm ignores | ⭐️ |
node/no-unpublished-import | disallow import declarations which import private modules | ⭐️ |
node/no-unpublished-require | disallow require() expressions which import private modules | ⭐️ |
node/no-unsupported-features/es-builtins | disallow unsupported ECMAScript built-ins on the specified version | ⭐️ |
node/no-unsupported-features/es-syntax | disallow unsupported ECMAScript syntax on the specified version | ⭐️ |
node/no-unsupported-features/node-builtins | disallow unsupported Node.js built-in APIs on the specified version | ⭐️ |
node/process-exit-as-throw | make process.exit() expressions the same code path as throw | ⭐️ |
node/shebang | suggest correct usage of shebang | ⭐️✒️ |
Rule ID | Description | |
---|---|---|
node/no-deprecated-api | disallow deprecated APIs | ⭐️ |
Rule ID | Description | |
---|---|---|
node/callback-return | require return statements after callbacks | |
node/exports-style | enforce either module.exports or exports | |
node/file-extension-in-import | enforce the style of file extensions in import declarations | ✒️ |
node/global-require | require require() calls to be placed at top-level module scope | |
node/no-mixed-requires | disallow require calls to be mixed with regular variable declarations | |
node/no-process-env | disallow the use of process.env | |
node/no-restricted-import | disallow specified modules when loaded by import declarations | |
node/no-restricted-require | disallow specified modules when loaded by require | |
node/no-sync | disallow synchronous methods | |
node/prefer-global/buffer | enforce either Buffer or require("buffer").Buffer | |
node/prefer-global/console | enforce either console or require("console") | |
node/prefer-global/process | enforce either process or require("process") | |
node/prefer-global/text-decoder | enforce either TextDecoder or require("util").TextDecoder | |
node/prefer-global/text-encoder | enforce either TextEncoder or require("util").TextEncoder | |
node/prefer-global/url-search-params | enforce either URLSearchParams or require("url").URLSearchParams | |
node/prefer-global/url | enforce either URL or require("url").URL | |
node/prefer-promises/dns | enforce require("dns").promises | |
node/prefer-promises/fs | enforce require("fs").promises |
These rules have been deprecated in accordance with the deprecation policy, and replaced by newer rules:
Rule ID | Replaced by |
---|---|
node/no-hide-core-modules | (nothing) |
node/no-unsupported-features | node/no-unsupported-features/es-syntax and node/no-unsupported-features/es-builtins |
This plugin provides three configs:
plugin:node/recommended
considers both CommonJS and ES Modules. If "type":"module"
field existed in package.json then it considers files as ES Modules. Otherwise it considers files as CommonJS. In addition, it considers *.mjs
files as ES Modules and *.cjs
files as CommonJS.plugin:node/recommended-module
considers all files as ES Modules.plugin:node/recommended-script
considers all files as CommonJS.Those preset config:
process.exit()
.{ecmaVersion: 2019}
and etc into parserOptions
.globals
.plugins
.no-missing-import
/ no-missing-require
rules don't work with nested folders in SublimeLinter-eslinteslint-plugin-node
follows semantic versioning and ESLint's Semantic Versioning Policy.
Welcome contributing!
Please use GitHub's Issues/PRs.
npm test
runs tests and measures coverage.npm run coverage
shows the coverage result of npm test
command.npm run clean
removes the coverage result of npm test
command.No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
Found 14/30 approved changesets -- score normalized to 4
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More