Skip to content

Releases: afterburner-sh/afterburner

v0.1.3: Flashpoint

12 Jun 21:08
6e76ed1

Choose a tag to compare

burn v0.1.3

BURN: Sandboxed JavaScript runtime. Drop-in for Node-style scripts, runs untrusted JS in a sandbox.

Install

The one-liner installer auto-detects your OS + architecture, fetches + verifies the right binary, and updates your $PATH:

# Linux + macOS
curl -fsSL https://afterburner.sh | sh
# Windows (PowerShell)
iwr -useb https://afterburner.sh | iex

Manual install

Or grab a tarball directly. Linux + macOS:

# Linux x86_64
curl -L https://github.com/afterburner-sh/afterburner/releases/download/v0.1.3/burn-0.1.3-x86_64-unknown-linux-gnu.tar.gz | tar xz
sudo mv burn-0.1.3-x86_64-unknown-linux-gnu/burn /usr/local/bin/

# Linux aarch64
curl -L https://github.com/afterburner-sh/afterburner/releases/download/v0.1.3/burn-0.1.3-aarch64-unknown-linux-gnu.tar.gz | tar xz
sudo mv burn-0.1.3-aarch64-unknown-linux-gnu/burn /usr/local/bin/

# macOS arm64 (Apple Silicon)
curl -L https://github.com/afterburner-sh/afterburner/releases/download/v0.1.3/burn-0.1.3-aarch64-apple-darwin.tar.gz | tar xz
sudo mv burn-0.1.3-aarch64-apple-darwin/burn /usr/local/bin/

Windows x86_64 (PowerShell):

# Download + extract + install to %USERPROFILE%\.local\bin
$ver = "0.1.3"
$url = "https://github.com/afterburner-sh/afterburner/releases/download/v0.1.3/burn-$ver-x86_64-pc-windows-msvc.zip"
$dst = Join-Path $env:USERPROFILE ".local\bin"
New-Item -ItemType Directory -Force -Path $dst | Out-Null
Invoke-WebRequest -UseBasicParsing -Uri $url -OutFile burn.zip
Expand-Archive -Path burn.zip -DestinationPath . -Force
Move-Item -Force "burn-$ver-x86_64-pc-windows-msvc\burn.exe" "$dst\burn.exe"
Remove-Item -Recurse -Force burn.zip,"burn-$ver-x86_64-pc-windows-msvc"
# Add $dst to PATH for the current session (persistent: System Properties > Environment Variables)
$env:Path = "$dst;$env:Path"

Windows ARM64: install the x86_64 build above — Windows 11 ARM64 ships with transparent x64 emulation, so the x86_64 binary runs unmodified.

Intel macOS: not in the release matrix (GitHub's macos-13 runner is end-of-life). Build from source — see the repo README.

Verify

Each archive ships with an accompanying .sha256 file.

Bundled features

Built with --features release-cli: bin + wasm + native + adaptive + thrust + flow + host-http + ts + all-shadows.

v0.1.2: Kindling

11 Jun 17:40
911e7d8

Choose a tag to compare

burn v0.1.2

BURN: Sandboxed JavaScript runtime. Drop-in for Node-style scripts, runs untrusted JS in a sandbox.

Install

The one-liner installer auto-detects your OS + architecture, fetches + verifies the right binary, and updates your $PATH:

# Linux + macOS
curl -fsSL https://afterburner.sh | sh
# Windows (PowerShell)
iwr -useb https://afterburner.sh | iex

Manual install

Or grab a tarball directly. Linux + macOS:

# Linux x86_64
curl -L https://github.com/afterburner-sh/afterburner/releases/download/v0.1.2/burn-0.1.2-x86_64-unknown-linux-gnu.tar.gz | tar xz
sudo mv burn-0.1.2-x86_64-unknown-linux-gnu/burn /usr/local/bin/

# Linux aarch64
curl -L https://github.com/afterburner-sh/afterburner/releases/download/v0.1.2/burn-0.1.2-aarch64-unknown-linux-gnu.tar.gz | tar xz
sudo mv burn-0.1.2-aarch64-unknown-linux-gnu/burn /usr/local/bin/

# macOS arm64 (Apple Silicon)
curl -L https://github.com/afterburner-sh/afterburner/releases/download/v0.1.2/burn-0.1.2-aarch64-apple-darwin.tar.gz | tar xz
sudo mv burn-0.1.2-aarch64-apple-darwin/burn /usr/local/bin/

Windows x86_64 (PowerShell):

# Download + extract + install to %USERPROFILE%\.local\bin
$ver = "0.1.2"
$url = "https://github.com/afterburner-sh/afterburner/releases/download/v0.1.2/burn-$ver-x86_64-pc-windows-msvc.zip"
$dst = Join-Path $env:USERPROFILE ".local\bin"
New-Item -ItemType Directory -Force -Path $dst | Out-Null
Invoke-WebRequest -UseBasicParsing -Uri $url -OutFile burn.zip
Expand-Archive -Path burn.zip -DestinationPath . -Force
Move-Item -Force "burn-$ver-x86_64-pc-windows-msvc\burn.exe" "$dst\burn.exe"
Remove-Item -Recurse -Force burn.zip,"burn-$ver-x86_64-pc-windows-msvc"
# Add $dst to PATH for the current session (persistent: System Properties > Environment Variables)
$env:Path = "$dst;$env:Path"

Windows ARM64: install the x86_64 build above — Windows 11 ARM64 ships with transparent x64 emulation, so the x86_64 binary runs unmodified.

Intel macOS: not in the release matrix (GitHub's macos-13 runner is end-of-life). Build from source — see the repo README.

Verify

Each archive ships with an accompanying .sha256 file.

Bundled features

Built with --features release-cli: bin + wasm + native + adaptive + thrust + flow + host-http + ts + all-shadows.

v0.1.1: Spark

05 May 07:50

Choose a tag to compare

burn v0.1.1

BURN: Sandboxed JavaScript runtime. Drop-in for Node-style scripts, runs untrusted JS in a sandbox.

Install

The one-liner installer auto-detects your OS + architecture, fetches + verifies the right binary, and updates your $PATH:

# Linux + macOS
curl -fsSL https://afterburner.sh | sh
# Windows (PowerShell)
iwr -useb https://afterburner.sh | iex

Manual install

Or grab a tarball directly. Linux + macOS:

# Linux x86_64
curl -L https://github.com/vertexclique/afterburner/releases/download/v0.1.1/burn-0.1.1-x86_64-unknown-linux-gnu.tar.gz | tar xz
sudo mv burn-0.1.1-x86_64-unknown-linux-gnu/burn /usr/local/bin/

# Linux aarch64
curl -L https://github.com/vertexclique/afterburner/releases/download/v0.1.1/burn-0.1.1-aarch64-unknown-linux-gnu.tar.gz | tar xz
sudo mv burn-0.1.1-aarch64-unknown-linux-gnu/burn /usr/local/bin/

# macOS arm64 (Apple Silicon)
curl -L https://github.com/vertexclique/afterburner/releases/download/v0.1.1/burn-0.1.1-aarch64-apple-darwin.tar.gz | tar xz
sudo mv burn-0.1.1-aarch64-apple-darwin/burn /usr/local/bin/

Windows x86_64 (PowerShell):

# Download + extract + install to %USERPROFILE%\.local\bin
$ver = "0.1.1"
$url = "https://github.com/vertexclique/afterburner/releases/download/v0.1.1/burn-$ver-x86_64-pc-windows-msvc.zip"
$dst = Join-Path $env:USERPROFILE ".local\bin"
New-Item -ItemType Directory -Force -Path $dst | Out-Null
Invoke-WebRequest -UseBasicParsing -Uri $url -OutFile burn.zip
Expand-Archive -Path burn.zip -DestinationPath . -Force
Move-Item -Force "burn-$ver-x86_64-pc-windows-msvc\burn.exe" "$dst\burn.exe"
Remove-Item -Recurse -Force burn.zip,"burn-$ver-x86_64-pc-windows-msvc"
# Add $dst to PATH for the current session (persistent: System Properties > Environment Variables)
$env:Path = "$dst;$env:Path"

Windows ARM64: install the x86_64 build above — Windows 11 ARM64 ships with transparent x64 emulation, so the x86_64 binary runs unmodified.

Intel macOS: not in the release matrix (GitHub's macos-13 runner is end-of-life). Build from source — see the repo README.

Verify

Each archive ships with an accompanying .sha256 file.

Bundled features

Built with --features release-cli: bin + wasm + native + adaptive + thrust + flow + host-http + ts + all-shadows.

v0.1.0: Ignition

05 May 06:25

Choose a tag to compare

burn v0.1.0

BURN: Sandboxed JavaScript runtime. Drop-in for Node-style scripts, runs untrusted JS in a sandbox.

Install

# Linux x86_64
curl -L https://github.com/vertexclique/afterburner/releases/download/v0.1.0/burn-0.1.0-x86_64-unknown-linux-gnu.tar.gz | tar xz
sudo mv burn-0.1.0-x86_64-unknown-linux-gnu/burn /usr/local/bin/

# macOS arm64
curl -L https://github.com/vertexclique/afterburner/releases/download/v0.1.0/burn-0.1.0-aarch64-apple-darwin.tar.gz | tar xz
sudo mv burn-0.1.0-aarch64-apple-darwin/burn /usr/local/bin/

Verify

Each archive ships with an accompanying .sha256 file.

Bundled features

Built with --features release-cli: bin + wasm + native + adaptive + thrust + flow + host-http + ts + all-shadows.