Zero-configuration bundler for Node.js backend applications based on esbuild.
- Zero Configuration: No config files needed, just run the CLI.
- Fast: Built on top of esbuild for lightning-fast builds.
- Flexible: Supports various frameworks like NestJS, Express, Koa, and Fastify.
pnpm add -D backbundle
Add the following in your package.json scripts:
{
"scripts": {
"build": "backbundle build --input src/index.ts --output dist/index.js"
}
}