Skip to content

nsyte v0.21.0

Latest

Choose a tag to compare

@github-actions github-actions released this 09 Sep 18:52
· 4 commits to main since this release

nsyte v0.21.0

What's New

Download Options

We provide both standard and compressed binaries:

  • Standard: Original binaries (~88MB) - recommended for most users
  • Compressed: UPX-compressed binaries (~30MB) - smaller download, slightly slower startup

Installation

Install from JSR (Recommended)

# Using Deno
deno install -Agr jsr:@nsyte/cli

# Using npm (requires Node.js)
npx jsr add -g @nsyte/cli

# Using other package managers
# See https://jsr.io/@nsyte/cli for more options

macOS

# Download and make executable
curl -L https://github.com/sandwichfarm/nsyte/releases/download/v0.21.0/nsyte-macos-0.21.0 -o nsyte
chmod +x nsyte
sudo mv nsyte /usr/local/bin/

# Or compressed version (smaller download)
curl -L https://github.com/sandwichfarm/nsyte/releases/download/v0.21.0/nsyte-macos-compressed-0.21.0 -o nsyte
chmod +x nsyte
sudo mv nsyte /usr/local/bin/

Linux

# Download and make executable
curl -L https://github.com/sandwichfarm/nsyte/releases/download/v0.21.0/nsyte-linux-0.21.0 -o nsyte
chmod +x nsyte
sudo mv nsyte /usr/local/bin/

# Or compressed version (smaller download)
curl -L https://github.com/sandwichfarm/nsyte/releases/download/v0.21.0/nsyte-linux-compressed-0.21.0 -o nsyte
chmod +x nsyte
sudo mv nsyte /usr/local/bin/

Windows

Download the executable and add it to your PATH:

  • Standard: nsyte-windows-0.21.0.exe
  • Compressed: nsyte-windows-compressed-0.21.0.exe

Quick Start

# Initialize a new nsyte project
nsyte init

# Deploy your site
nsyte deploy ./my-site

# List deployed files
nsyte ls

⚠️ Note on Compressed Binaries

Compressed binaries use UPX compression and may:

  • Take 1-2 seconds longer to start (decompression overhead)
  • Trigger antivirus warnings on Windows (false positives)
  • Not work with macOS Gatekeeper without additional steps

If you experience any issues, please use the standard binaries.