Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Handle node projects development tasks with no configuration.
$ yarn add --dev d-scripts
NOTE: it includes all the dependencies (prettier, jest, eslint, etc) so you don't have to install them.
d-scripts
exposes a series of scripts to handle development tasks.
$ d-scripts [script] [options]
init
Adds the available scripts to the project's package.json
.
WARNING: it will override anything you have in the properties
test
,lint
andformat
of thescripts
field.
format
Runs prettier on write mode.
lint
Runs ESLint with --cache
flag, you can override that with --no-cache
.
Since ESLint editor integrations require project based configuration to work a local eslintrc
is needed, for that you can use eslint-config-d
.
{
"extends": [
"d"
]
}
NOTE: a
.eslintignore
is required until this eslint issue is resolved.
test
Runs Jest. By default it runs in watch mode unless you are checking coverage (--coverage
), used the --no-watch
flag or is running in CI (checked by is-ci
).
All the scripts configuration can be overridden by adding your own confing for the tools. The default configuration can be found here.
precommit
.react-scripts
from create-react-app
.kcd-scripts
.MIT
FAQs
Handle node projects development tasks with no configuration
The npm package d-scripts receives a total of 7 weekly downloads. As such, d-scripts popularity was classified as not popular.
We found that d-scripts 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.