Minimal zero-dependency esbuild development environment with live reload. Current version 0.3.4. Provides a CLI tool (ebp) for development server and production builds using esbuild. Convention-over-configuration folder structure (static/, src/, target/). Includes global IS_DEV flag, IIFE support, and static file copying. Not actively maintained (last release 2021). Smaller alternative to full bundler setups like webpack or Vite for esbuild-based projects.
npm install esbuild-plusNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize a new project, install dependencies, create minimal files, and start the dev server at localhost:3000.
Add --dev when you want a development server with live reload.
Run npm i -D esbuild alongside esbuild-plus.
Add a global type declaration file.
Update your workflow if you relied on old server behavior.
Upgrade to v0.3.2+ for improved static syncing.
Run: npm i -D esbuild
Use: npx ebp or add to scripts in package.json.
Run with --dev: npx ebp --dev
Use CLI via npx; there is no programmatic API.