
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
skoda-scripts
Advanced tools
Handle node projects development tasks with no configuration.
$ yarn add --dev skoda-scripts
NOTE: it includes all the dependencies (prettier, jest, eslint, etc) so you don't have to install them.
skoda-scripts exposes a series of scripts to handle development tasks.
$ skoda-scripts [script] [options]
initAdds the available scripts to the project's package.json.
WARNING: it will override anything you have in the properties
test,lintandformatof thescriptsfield.
formatRuns prettier on write mode.
lintRuns 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": [
"skoda"
]
}
NOTE: a
.eslintignoreis required until this eslint issue is resolved.
testRuns 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).
skoda-scripts provides an opinionated set of configurations. But all of it can be overridden by adding your own. skoda-scripts will use the configuration files (or package.json property) for each tool if present. The default configuration can be found here.
precommit hook to format and lint code.skoda-scripts is our take to provide "tools without config". It was strongly inspired by @kentcdodds's version kcd-scripts.
react-scripts from create-react-app.MIT
FAQs
Handle node projects development tasks with no configuration
We found that skoda-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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.