
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.
@avanzu/kernel
Advanced tools
A pragmatic and extensible application kernel for TypeScript/Node.js projects.
Designed for structure, composability, and maintainability—without sacrificing performance or predictability.
boot, serve, shutdown)🧓 Siggy says: “It’s boring and predictable as heck… and that’s how we like it.”
npm install @avanzu/kernel
This package provides the infrastructure to build a modular, maintainable application, but does not include a ready-to-run setup. You are expected to define your own configuration layer and kernel extension.
Here’s what a possible entry point could look like once things are scaffolded:
import { Config } from './application/config'
import { AppKernel } from './application/kernel'
import { environments } from './configuration'
(async function main() {
const env = process.env.NODE_ENV || 'development'
const configValues = environments.get(env)
const config = new Config(configValues)
const kernel = new AppKernel(config)
process.on('SIGINT', kernel.shutdown.bind(kernel))
process.on('SIGTERM', kernel.shutdown.bind(kernel))
await kernel.boot()
await kernel.serve()
})()
Comprehensive documentation and integration guides available at:
FAQs
Robust foundation for creating scalable (micro-)services applications
We found that @avanzu/kernel 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.