The macOS ARM 64-bit binary distribution for esbuild, a JavaScript bundler.
npx @tessl/cli install tessl/npm-esbuild-darwin-arm64@0.15.0esbuild-darwin-arm64 is a platform-specific binary distribution package that provides the native macOS ARM64 executable for esbuild, an extremely fast JavaScript bundler and minifier. This package enables esbuild to achieve its exceptional performance on Apple Silicon Macs by providing the precompiled Go binary rather than a JavaScript implementation.
npm install esbuild-darwin-arm64 (typically installed automatically as optional dependency)esbuild-darwin-arm64 is the macOS ARM64 binary distribution for esbuild, enabling native performance on Apple Silicon Macs. Key features:
This package does not provide direct JavaScript imports. Instead, it integrates with the main esbuild package:
// The main esbuild package automatically uses this binary on macOS ARM64
const esbuild = require('esbuild');
// or
import * as esbuild from 'esbuild';While this package itself provides no API, it enables the main esbuild package to function optimally on macOS ARM64:
// Install main esbuild package (which includes this as optional dependency)
// npm install esbuild
const esbuild = require('esbuild');
// Build configuration that utilizes this binary on macOS ARM64
esbuild.build({
entryPoints: ['src/app.js'],
bundle: true,
outfile: 'dist/app.js',
platform: 'node'
}).catch(() => process.exit(1));Provides the native macOS ARM64 executable for esbuild bundling operations.
{
"name": "esbuild-darwin-arm64",
"version": "0.15.18",
"engines": {
"node": ">=12"
},
"os": ["darwin"],
"cpu": ["arm64"],
"preferUnplugged": true
}Automatically integrates with the main esbuild package through optional dependencies.
Enables native Go binary execution for maximum bundling performance on Apple Silicon Macs.
This package is part of esbuild's distributed binary architecture:
esbuild): Provides JavaScript API and platform detectionesbuild-darwin-arm64): Provide platform-specific compiled binariesThis package is one of many platform-specific binary distributions in the esbuild ecosystem:
esbuild-darwin-64 (macOS Intel)esbuild-linux-64 (Linux x64)esbuild-windows-64 (Windows x64)esbuild-linux-arm64 (Linux ARM64)npm install esbuild-darwin-arm64Important: This package exposes no JavaScript functions, classes, constants, or types. It exists solely as a binary distribution mechanism. All esbuild API interactions must occur through the main esbuild package, which provides comprehensive JavaScript and CLI interfaces for bundling, minification, and transformation operations.