http-nu

(β˜… 154)

The surprisingly performant, Nushell-scriptable, cross.stream-powered, Datastar-ready HTTP server that fits in your back pocket. πŸ˜πŸ’«πŸš€πŸ’œ

  • .gitignore
  • build.rs
  • Cargo.lock
  • Cargo.toml
  • CLAUDE.md
  • dagger.json
  • LICENSE
  • NIXOS_PACKAGING_GUIDE.md
  • README.md

# Installation Guide

1. Get the code
git clone https://github.com/cablehead/http-nu

Downloads the entire project code from GitHub to your computer.

cd http-nu

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
brew install cablehead/tap/http-nu

Installs the pre-built package via Homebrew β€” no source build required.

cargo install http-nu --locked

Builds and installs the package published on crates.io β€” no need to clone the repo yourself.

βœ… After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Go

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Go The Go compiler and toolchain.
cd .dagger

This project's files live in a subfolder, so move into it first.

go build ./...

Compiles the Go program into an executable.

go run .

Runs the Go program directly without a separate build step.

βœ… If the build finishes without errors, it worked. If you used go run ., check the terminal output.

4. Rust

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Rust (rustup) Installing via rustup also installs cargo.
cargo binstall http-nu

Type this command into your terminal and run it.

cargo install http-nu --locked

Builds and installs the package published on crates.io β€” no need to clone the repo yourself.

βœ… If cargo build finishes without errors, it worked. The executable is created under target/.

Pulled directly from this repo's README.

// repository documentation