.agents/skills/esbuild/SKILL.md
esbuild extremely fast JavaScript bundler. Used internally by Vite. Use for simple bundling, library builds, or understanding Vite internals. USE WHEN: user mentions "esbuild", "fast bundler", asks about "esbuild config", "library bundling", "esbuild API" DO NOT USE FOR: Complex apps (use Vite), Webpack projects (use webpack skill), need extensive plugins (use Rollup/Webpack)
npx skillsauth add d-subrahmanyam/deno-fresh-microservices esbuildInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Deep Knowledge: Use
mcp__documentation__fetch_docswith technology:esbuildfor comprehensive documentation.
npm install -D esbuild
# Bundle single file
esbuild src/index.ts --bundle --outfile=dist/bundle.js
# Watch mode
esbuild src/index.ts --bundle --outfile=dist/bundle.js --watch
# Minify for production
esbuild src/index.ts --bundle --minify --outfile=dist/bundle.min.js
# Multiple outputs
esbuild src/index.ts --bundle --outdir=dist --format=esm --format=cjs
# Source maps
esbuild src/index.ts --bundle --sourcemap --outfile=dist/bundle.js
// build.ts
import * as esbuild from 'esbuild';
// Simple build
await esbuild.build({
entryPoints: ['src/index.ts'],
bundle: true,
outfile: 'dist/bundle.js',
});
// Production build
await esbuild.build({
entryPoints: ['src/index.ts'],
bundle: true,
minify: true,
sourcemap: true,
target: ['es2020'],
outfile: 'dist/bundle.min.js',
});
await esbuild.build({
// Entry points
entryPoints: ['src/index.ts', 'src/worker.ts'],
// Or object for custom names
entryPoints: {
main: 'src/index.ts',
worker: 'src/worker.ts',
},
// Output
bundle: true,
outdir: 'dist',
outfile: 'dist/bundle.js', // Single file
outExtension: { '.js': '.mjs' },
// Format
format: 'esm', // 'esm' | 'cjs' | 'iife'
platform: 'node', // 'browser' | 'node' | 'neutral'
target: ['es2020', 'chrome90', 'firefox88'],
// Optimization
minify: true,
minifyWhitespace: true,
minifyIdentifiers: true,
minifySyntax: true,
treeShaking: true,
// Source maps
sourcemap: true, // External .map file
sourcemap: 'inline', // Inline in JS
sourcemap: 'linked', // External with reference
// Splitting (ESM only)
splitting: true,
chunkNames: 'chunks/[name]-[hash]',
// External packages
external: ['react', 'react-dom'],
packages: 'external', // All node_modules external
// Define
define: {
'process.env.NODE_ENV': '"production"',
'__VERSION__': '"1.0.0"',
},
// Loaders
loader: {
'.png': 'file',
'.svg': 'text',
'.json': 'json',
},
// Paths
alias: {
'@': './src',
'@components': './src/components',
},
resolveExtensions: ['.tsx', '.ts', '.jsx', '.js'],
// Banner/Footer
banner: {
js: '/* Bundle generated at ' + new Date().toISOString() + ' */',
},
footer: {
js: '/* End of bundle */',
},
// Legal comments
legalComments: 'none', // 'none' | 'inline' | 'eof' | 'linked' | 'external'
// Metafile for analysis
metafile: true,
});
// Watch with rebuild
const ctx = await esbuild.context({
entryPoints: ['src/index.ts'],
bundle: true,
outfile: 'dist/bundle.js',
});
await ctx.watch();
console.log('Watching for changes...');
// Later: stop watching
await ctx.dispose();
const ctx = await esbuild.context({
entryPoints: ['src/index.tsx'],
bundle: true,
outdir: 'dist',
});
// Start dev server
await ctx.serve({
servedir: 'dist',
port: 3000,
});
console.log('Server running on http://localhost:3000');
// Custom plugin structure
const myPlugin: esbuild.Plugin = {
name: 'my-plugin',
setup(build) {
// Resolve hook
build.onResolve({ filter: /^env$/ }, (args) => ({
path: args.path,
namespace: 'env-ns',
}));
// Load hook
build.onLoad({ filter: /.*/, namespace: 'env-ns' }, () => ({
contents: JSON.stringify(process.env),
loader: 'json',
}));
// Start/End hooks
build.onStart(() => {
console.log('Build started');
});
build.onEnd((result) => {
console.log(`Build ended with ${result.errors.length} errors`);
});
},
};
await esbuild.build({
entryPoints: ['src/index.ts'],
bundle: true,
plugins: [myPlugin],
outfile: 'dist/bundle.js',
});
// Environment variables plugin
const envPlugin: esbuild.Plugin = {
name: 'env',
setup(build) {
build.onResolve({ filter: /^env$/ }, (args) => ({
path: args.path,
namespace: 'env-ns',
}));
build.onLoad({ filter: /.*/, namespace: 'env-ns' }, () => ({
contents: `export const API_URL = ${JSON.stringify(process.env.API_URL)}`,
loader: 'ts',
}));
},
};
// CSS modules plugin (basic)
const cssModulesPlugin: esbuild.Plugin = {
name: 'css-modules',
setup(build) {
build.onLoad({ filter: /\.module\.css$/ }, async (args) => {
const css = await fs.readFile(args.path, 'utf8');
// Process CSS modules...
return {
contents: `export default ${JSON.stringify(classNames)}`,
loader: 'js',
};
});
},
};
// Build library for npm
await esbuild.build({
entryPoints: ['src/index.ts'],
bundle: true,
minify: true,
sourcemap: true,
target: ['es2020'],
external: ['react', 'react-dom'], // Peer deps
outdir: 'dist',
format: 'esm',
outExtension: { '.js': '.mjs' },
});
// Also build CJS
await esbuild.build({
entryPoints: ['src/index.ts'],
bundle: true,
minify: true,
sourcemap: true,
target: ['es2020'],
external: ['react', 'react-dom'],
outdir: 'dist',
format: 'cjs',
outExtension: { '.js': '.cjs' },
});
// package.json for library
{
"name": "my-lib",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
}
}
const result = await esbuild.build({
entryPoints: ['src/index.ts'],
bundle: true,
metafile: true,
outfile: 'dist/bundle.js',
});
// Write metafile
await fs.writeFile('meta.json', JSON.stringify(result.metafile));
// Analyze
const analysis = await esbuild.analyzeMetafile(result.metafile);
console.log(analysis);
// esbuild doesn't generate .d.ts - use tsc
import { execSync } from 'child_process';
// Build JS with esbuild
await esbuild.build({
entryPoints: ['src/index.ts'],
bundle: true,
outfile: 'dist/index.js',
});
// Generate types with tsc
execSync('tsc --emitDeclarationOnly --declaration --outDir dist');
| Feature | esbuild | Webpack | Vite | Rollup | |---------|---------|---------|------|--------| | Speed | Fastest | Slow | Fast (uses esbuild) | Medium | | Config | Simple | Complex | Simple | Medium | | Plugins | Limited | Many | Many | Many | | HMR | Basic | Full | Full | Plugin | | Tree-shaking | Yes | Yes | Yes | Best | | Code-splitting | ESM only | Full | Full | Full |
| Scenario | Recommendation | |----------|----------------| | Simple bundling | esbuild | | Library build | esbuild + tsc | | Complex app | Vite (uses esbuild) | | Legacy support | Webpack | | Need plugins | Vite or Rollup |
| Anti-Pattern | Why It's Bad | Correct Approach | |--------------|--------------|------------------| | Using for complex apps | Missing features | Use Vite for apps, esbuild for libraries | | Not externalizing dependencies | Large library bundles | Use external: [...] for peer deps | | No .d.ts generation | Missing TypeScript types | Run tsc --emitDeclarationOnly | | Expecting advanced HMR | esbuild HMR is basic | Use Vite's dev server for HMR | | Not specifying target | Wrong output format | Set target: ['es2020'] explicitly | | Missing bundle analysis | Unknown bundle size | Use metafile and analyzeMetafile |
| Issue | Cause | Solution | |-------|-------|----------| | "Cannot find module" | Missing external | Add to external array | | No type definitions | esbuild doesn't generate | Use tsc --emitDeclarationOnly | | Large bundle | Not externalizing deps | Mark peer deps as external | | Wrong module format | Incorrect format setting | Set format: 'esm' or 'cjs' | | Slow builds (unexpected) | Not using esbuild efficiently | Check for plugins causing slowdown | | CSS not bundled | No CSS loader | esbuild bundles CSS by default, check import |
# Benchmark (10K modules)
# esbuild: ~0.3s
# Rollup: ~10s
# Webpack: ~30s
For advanced configurations:
mcp__documentation__fetch_docs
- Technology:
esbuild- esbuild Docs
development
Guidelines for building high-performance APIs with Fastify and TypeScript, covering validation, Prisma integration, and testing best practices
development
FastAPI modern Python web framework. Covers routing, Pydantic models, dependency injection, and async support. Use when building Python APIs. USE WHEN: user mentions "fastapi", "pydantic", "async python api", "python rest api", asks about "dependency injection python", "python openapi", "python swagger", "async endpoints", "python api validation", "fastapi middleware" DO NOT USE FOR: Django apps - use `django` instead, Flask apps - use `flask` instead, synchronous Python APIs without type hints, GraphQL-only APIs
tools
FastAPI integration testing specialist. Covers synchronous TestClient, async httpx AsyncClient, dependency injection overrides, auth testing (JWT, OAuth2, API keys), WebSocket testing, file uploads, background tasks, middleware testing, and HTTP mocking with respx, responses, and pytest-httpserver. USE WHEN: user mentions "FastAPI test", "TestClient", "httpx async test", "dependency override test", "respx mock", asks about testing FastAPI endpoints, authentication in tests, or HTTP client mocking. DO NOT USE FOR: Django - use `pytest-django`; pytest internals - use `pytest`; Container infrastructure - use `testcontainers-python`
development
Expert in FastAPI Python development with best practices for APIs and async operations