
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.
@mkvlrn/config
Advanced tools
Custom, opinionated configurations for biome and typescript (tsconfig.json).
To be used in my node projects - aimed at modern, type-safe, non-spaghetti codebases.
They'll work well in most base node, nest, and react (non next) projects without changes, just by extending these configs.
pnpm add @mkvlrn/config -D
Obs: Both biome and typescript need to be installed separately and be available in the project.
Create your configuration file (biome.json or biome.jsonc):
biome.jsonc{
"$schema": "node_modules/@biomejs/biome/configuration_schema.json",
"root": true, // if this is the root of your project, false otherwise
"extends": ["@mkvlrn/config/biome"],
"overrides": [
// any overrides, see biome docs
]
}
Create your configuration file:
tsconfig.json{
"extends": "@mkvlrn/config/tsconfig",
"compilerOptions": {
// add your custom rules here
}
}
Obs: anything related to files needs to be set: rootDir, outDir, baseUrl, paths, etc - this prevents path confusion because the "original" tsconfig will be in node_modules.
MIT
FAQs
Opinionated configurations for biome and typescript
We found that @mkvlrn/config demonstrated a healthy version release cadence and project activity because the last version was released less than 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.