
Security News
November CVEs Fell 25% YoY, Driven by Slowdowns at Major CNAs
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.
@corva/eslint-config-node
Advanced tools
Defines global linting rules for Corva.AI Node.js projects.
npm install husky standard-version -D
npm pkg set scripts.prepare="husky install"
npm pkg set scripts.release="git add -A && standard-version -a"
npm pkg set scripts.release-rc="git add -A && standard-version -a --prerelease rc --skip.changelog"
npm run prepare
# Install
npm i -D @corva/eslint-config-node
# OR
yarn add -D @corva/eslint-config-node
# Add eslint config
echo "module.exports = {'extends': '@corva/eslint-config-node'};" > .eslintrc.js
# Add prettier config
echo "\"@corva/eslint-config-node/prettier\"" > .prettierrc
or add a .eslintrc.js file in the root of your project and extended it with the default config:
module.exports = {
extends: '@corva/eslint-config-node',
};
and .prettierrc:
"@corva/eslint-config-node/prettier"
Add dependencies:
npm i -D @commitlint/cli @commitlint/config-conventional
Add config:
echo "module.exports = {extends: ['@commitlint/config-conventional']};" > .commitlintrc.js
For husky <=v4 add following in your package.json:
{
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}
For husky >= v5:
npx husky add .husky/commit-msg 'npx --no -- commitlint --edit ${1}'
Add dependencies:
npm i -D lint-staged
Add config to package.json:
{
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"lint-staged": {
"*.{js,ts}": "npm run lint:fix"
}
}
For husky <=v4 add following in your package.json:
{
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
}
}
For husky >= v5:
npx husky add .husky/pre-commit 'npx lint-staged'
FAQs
Defines global linting rules for Corva.AI node.js projects
The npm package @corva/eslint-config-node receives a total of 51 weekly downloads. As such, @corva/eslint-config-node popularity was classified as not popular.
We found that @corva/eslint-config-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 open source maintainers 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
November CVE publications fell 25% YoY even as 2025 totals rose, showing how a few major CNAs can swing “global” counts and skew perceived risk.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.