npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hyperlite-ai/hyperlite-pi

v0.2.25

Published

HyperLite binary for Linux ARM64 (Raspberry Pi 5)

Readme

@hyperlite-ai/hyperlite-pi

Offline AI chat for the Raspberry Pi 5. Native ARM64 binary, zero cloud, runs in your terminal.

What is this

HyperLite-PI is a terminal-based AI chat client built in Rust, optimised specifically for the Raspberry Pi 5 and ARM64 single-board computers. It runs large language models entirely on-device — no API keys, no internet connection required after setup, no data leaving your machine.

Requirements

  • Raspberry Pi 5 (or any ARM64 Linux SBC)
  • Debian Trixie / Ubuntu 24.04 or later (aarch64)
  • Node.js ≥ 16
  • ~2 GB free disk space for a small model

Install

npm install -g @hyperlite-ai/hyperlite-pi
hl

On first launch HyperLite-PI will:

  1. Detect your hardware (RAM, CPU cores)
  2. Show recommended models for your Pi
  3. Download your chosen model from HuggingFace
  4. Compile a native ARM64 inference server from llama.cpp source (~15 min, once only)

After that, launching hl takes under 2 seconds.

Why native ARM64

Most pre-built inference binaries for Linux ARM64 are Cosmopolitan APE format — x86_64 code that runs under QEMU emulation on your Pi. HyperLite-PI compiles llama-server directly on your hardware with GGML_NATIVE=ON, enabling the Cortex-A76 NEON and DotProd instruction sets. The difference is 5–10× faster token generation compared to emulated binaries.

Performance (Pi5, 16 GB, native binary)

| Model | Size | Speed | |---|---|---| | SmolLM2 1.7B Q4_K_M | ~1 GB | 35–50 tok/s | | Qwen2.5 3B Q4_K_M | ~2 GB | 22–32 tok/s | | Llama 3.2 3B Q4_K_M | ~2 GB | 20–30 tok/s | | Mistral 7B Q4_K_M | ~4 GB | 10–14 tok/s | | Llama 3.1 8B Q4_K_M | ~5 GB | 9–13 tok/s |

Features

  • Fully offline — models and runtime live on your SSD, nothing phoned home
  • Streaming responses — tokens appear as they are generated
  • Markdown rendering — code blocks with syntax highlighting in the terminal
  • Tool use — the model can read files, run shell commands, search the web (DuckDuckGo, no key needed), and edit code
  • Session history — all conversations saved locally in SQLite
  • Multiple agents — switch between General, Coding, and Plan modes or create your own
  • Model picker — browse and download models from inside the app (Ctrl+M)
  • Reasoning model support — thinking tokens from DeepSeek-R1, QwQ, etc.

Keybindings

| Key | Action | |---|---| | Enter | Send message | | Alt+Enter | New line | | Ctrl+M | Model picker | | Ctrl+S | Session list | | Ctrl+N | New session | | Ctrl+K | Command palette | | Ctrl+A | Agent picker | | Ctrl+C | Stop generation | | Ctrl+Q | Quit | | ? | Help |

Configuration

# ~/.config/hyperlite/settings.toml
theme   = "dracula"
sidebar = "auto"

[[permissions.rules]]
tool    = "bash"
pattern = "git *"
action  = "allow"

Links

License

MIT