A fast bundler for CommonJS applications, version 1.0.999. No release cadence noted. Differentiators vs alternatives like webpack or esbuild: minimal configuration, focused solely on CommonJS (CJS) module bundles for Node.js environments. Not actively maintained based on README absence.
npm install node-bundleNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic usage of the bundle function with entry and output paths, and handling of promise result.
Ensure all source files use require/module.exports; do not use import/export.
Use webpack or esbuild for code splitting.
Compile TypeScript to JavaScript first, then bundle.
Run `npm install node-bundle` and use `const bundle = require('node-bundle');`Use correct CommonJS require: `const bundle = require('node-bundle');`No dependency data recorded yet.