Registry / devops / kimbap

kimbap

JSON →
library0.0.13jsnpmunverified

kimbap.js is a JavaScript bundler (version 0.0.13, experimental) that bundles source files into a single output file. Designed as a minimal alternative to tools like Webpack or Rollup, it supports entry specification, output path configuration, and output filename customization via CLI options. As an early-stage project with no stable release cadence, it currently lacks advanced features like code splitting, plugins, or tree shaking. Its key differentiator is simplicity: a straightforward command-line interface with only four options. Not recommended for production use.

npm install kimbap
INSTALL
IMPORT
SIG · KIMBAP
K
kimbap
devopsjavascriptv0.0.13
Install
Import
Disk
Pass rate
0/ 6
Env Coverage0 / 6
glibc
1822
musl
1822
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18226 runs
build_error
glibc
node 18226 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

kimbap
import kimbap from 'kimbap'
const kimbap = require('kimbap')
Package is ESM-only. CJS require will fail.
bundle
import { bundle } from 'kimbap'
import bundle from 'kimbap'
If 'bundle' is a named export, use named import syntax.
kimbap (CLI)
npx kimbap --entry src/index.js --output dist/bundle.js
kimbap src/index.js -o dist/bundle.js
Source argument is required; specifying --entry is alternative. Verify CLI usage in documentation.

This quickstart shows installing kimbap, creating an entry file, and bundling it with the CLI command.

// Install: npm install kimbap // Create entry file: echo "console.log('Hello from kimbap');" > src/index.js // Bundle using npx: npx kimbap --entry src/index.js --output dist/bundle.js // Output is dist/bundle.js containing the bundled code.
kimbap --version
Debug
Known issues
breakingPackage is at version 0.0.13 and may have breaking changes between versions. No stable API.
fix
Pin exact version and test thoroughly before upgrading.
affects: <=0.0.13
deprecatedNo significant deprecation notices as version is very early.
fix
N/A
gotchaCLI options may change; source argument can be used instead of --entry, but behavior is not clearly documented.
fix
Use --entry or positional source argument; check output to verify correctness.
affects: >=0.0.0
Errors
Common errors & fixes
Cannot find module 'kimbap'
kimbap is not installed or installed globally incorrectly.
fix
Run 'npm install kimbap' in your project directory. Use npx to run CLI if not globally installed.
SyntaxError: Cannot use import statement outside a module
Trying to require an ESM package with CommonJS require.
fix
Use import syntax or set { "type": "module" } in package.json.
Upgrade
Version history
0.0.13latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
Amazon
1
Resources
kimbap — npm install kimbap · libregistry