Registry / http-networking / esbundle

esbundle

JSON →
library0.0.2jsnpmunverified

A client-side transpiler, bundler, and dynamic npm package fetcher/loader intended to run in the browser. Version 0.0.2 pre-release, no stable version available yet. Uses esbuild internally for transpilation and bundles packages from unpkg. Differentiates from other client-side bundlers (e.g., bundle.run, snowpack) by integrating dynamic npm package fetching and loading directly in the browser. Currently in early development with no working release; not suitable for production.

npm install esbundle
INSTALL
IMPORT
SIG · ESBUNDLE
E
esbundle
http-networkingjavascriptv0.0.2
Install
—
Import
—
Disk
—
Pass rate
0/ 6
Env Coverage0 / 6
glibc
18–22
musl
18–22
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 18–226 runs
build_error
glibc
node 18–226 runs
build_error
Code
Verified usage

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

esbundle
✓ import esbundle from 'esbundle'
✗ const esbundle = require('esbundle')
ESM-only; likely exports a default function/bundle method.
bundle
✓ import { bundle } from 'esbundle'
Possible named export for the main bundling function; check documentation.
transpile
✓ import { transpile } from 'esbundle'
Exported if separate transpilation is supported.

Shows basic usage: install package, import, bundle code with external dependencies from npm.

import esbundle from 'esbundle'; const code = `import { format } from 'date-fns'; console.log(format(new Date(), 'yyyy-MM-dd'));`; (async () => { try { const result = await esbundle({ code, dependencies: { 'date-fns': '^2.0.0' } }); console.log(result); // bundled & transpiled code } catch (error) { console.error('esbundle error:', error); } })();
Debug
Known issues
gotchaPackage is in pre-release (v0.0.2) and 'Coming Soon' status; no working version has been released.
fix
Wait for a stable release or use alternative client-side bundlers like esbuild-wasm or bundle.run.
affects: <=0.0.2
breakingFuture releases may have breaking changes without notice due to pre-release status.
fix
Pin to current version and expect to update frequently.
affects: <=0.0.2
Upgrade
Version history
0.0.2latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
14 hits · last 30 days
node
13
OpenAI (training)
1
Resources
esbundle — npm install esbundle · libregistry