Skip to main content

Build JavaScript files with esbuild.

Project description

plain.esbuild

Build and bundle JavaScript files using esbuild.

Overview

Plain esbuild provides a simple way to bundle JavaScript files using esbuild. Any asset file with .esbuild. in its name will be automatically bundled into a corresponding .esbuilt. file.

For example, if you have app/assets/js/app.esbuild.js, running the build command will create app/assets/js/app.esbuilt.js alongside it.

TypeScript and JSX entries work too — app.esbuild.ts, app.esbuild.tsx, and app.esbuild.jsx all compile to a .esbuilt.js output. JSX uses the automatic runtime, so you don't need to import React in every file.

// app/assets/js/app.esbuild.js
import { someFunction } from "./utils.js";

someFunction();

After building, you can reference the bundled file in your templates:

<script src="{{ asset('js/app.esbuilt.js') }}"></script>

The bundler automatically:

  • Bundles all imports into a single file
  • Generates source maps
  • Minifies the output (in production builds)
  • Targets the browser platform

CLI commands

Build

Build all .esbuild. files in your asset directories:

plain esbuild build

This command finds all files containing .esbuild. in your asset directories and bundles them using esbuild. The output files are minified by default.

Dev

Watch for changes and rebuild automatically:

plain esbuild dev

The dev command performs an initial build (without minification) and then watches for file changes. Each build records which files were bundled into each entry, so when a JS/TS source file changes, only the entries that actually import it are rebuilt — you can split your code into modules and they'll be picked up. If you delete an entry file, the corresponding .esbuilt. output file is also removed.

FAQs

What files should I gitignore?

Add this pattern to your .gitignore to exclude the generated bundle files:

**/assets/**/*.esbuilt.*

Do I need to install esbuild separately?

Yes, esbuild must be available via npx. Make sure you have a package.json in your project with esbuild as a dependency:

npm install --save-dev esbuild

How do I use this with plain assets compile?

The esbuild commands integrate with the asset compile pipeline through entrypoints. When you run plain assets compile, it will automatically run esbuild first if you have configured it in your build pipeline.

Can I customize esbuild options?

The esbuild function accepts a minify option. For more advanced customization, you can call the function directly in your own build scripts.

Installation

Install the plain.esbuild package from PyPI:

uv add plain.esbuild

Make sure you have esbuild available in your project:

npm install --save-dev esbuild

Create a JavaScript file with .esbuild. in the name:

// app/assets/js/app.esbuild.js
console.log("Hello from esbuild!");

Run the build command:

plain esbuild build

Add the generated files to your .gitignore:

**/assets/**/*.esbuilt.*

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

plain_esbuild-0.11.0.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

plain_esbuild-0.11.0-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file plain_esbuild-0.11.0.tar.gz.

File metadata

  • Download URL: plain_esbuild-0.11.0.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plain_esbuild-0.11.0.tar.gz
Algorithm Hash digest
SHA256 439030c7ead1b50be5b7a7eeca29f76c0cd90a25e9cc6e0df2f242c91b3303ff
MD5 77f80b8a7a2b07466213ec0539f17970
BLAKE2b-256 b72673c78d401d7b6dca2b641554318f04c2687bef68c9ecc87e80a73c0c5181

See more details on using hashes here.

File details

Details for the file plain_esbuild-0.11.0-py3-none-any.whl.

File metadata

  • Download URL: plain_esbuild-0.11.0-py3-none-any.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for plain_esbuild-0.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 159bfc3169050162605e6f75e2e031301ae688a14a988c2a1c6902e8f4d747d9
MD5 804613cf299f81990190c8b4c026d0ea
BLAKE2b-256 f9afb80056661522832da8aea3aeb5c0f8c4777cbac25cc28a509cb585e33cd8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page