Skip to content

Installation

Package Managers

bash
bun add bun-image-turbo
bash
npm install bun-image-turbo
bash
yarn add bun-image-turbo
bash
pnpm add bun-image-turbo

Requirements

  • Bun 1.0+ or Node.js 18+
  • No additional dependencies required (prebuilt binaries included)

Supported Platforms

Prebuilt binaries are available for all major platforms:

PlatformArchitectureSupportedHEIC
macOSARM64 (M1/M2/M3/M4/M5)
macOSx64 (Intel)
Linuxx64 (glibc)
Linuxx64 (musl/Alpine)
LinuxARM64 (glibc)
Windowsx64
WindowsARM64

All Platforms Supported

All platforms listed above are fully supported. HEIC/HEIF support is only available on macOS ARM64 due to libheif requirements. All other image formats (JPEG, PNG, WebP, GIF, BMP, TIFF, ICO) work on all platforms.

Verifying Installation

typescript
import { version, metadata } from 'bun-image-turbo';

// Check version
console.log(`bun-image-turbo v${version()}`);

// Test with an image
const buffer = await Bun.file('image.jpg').arrayBuffer();
const info = await metadata(Buffer.from(buffer));
console.log(info);

Building from Source

If you need to build from source (requires Rust 1.70+):

bash
# Clone the repository
git clone https://github.com/nexus-aissam/bun-image-turbo.git
cd bun-image-turbo

# Install dependencies
bun install

# Build native module
bun run build

# Build TypeScript
bun run build:ts

Build Requirements

  • Rust 1.70+
  • NASM (for TurboJPEG SIMD)
  • CMake 3.10+
  • C/C++ compiler
macOS Build Dependencies
bash
brew install nasm cmake
Linux Build Dependencies
bash
# Ubuntu/Debian
sudo apt-get install nasm cmake build-essential

# Fedora
sudo dnf install nasm cmake gcc-c++