api-client/packages/hoppscotch-selfhost-web/webapp-server
Shreyas ce026d5cef
chore(desktop): bump desktop shell dependencies (#5612)
This updates Hoppscotch Desktop (Shell) dependencies to align with
 `v2025.11.0` security patch and other dependency chain.

---------

Co-authored-by: James George <25279263+jamesgeorge007@users.noreply.github.com>
2025-11-24 21:09:50 +05:30
..
src chore(desktop): bump desktop shell dependencies (#5612) 2025-11-24 21:09:50 +05:30
.gitignore feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30
Cargo.lock feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30
Cargo.toml feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30
README.md feat: platform independent core and the new desktop app (#4684) 2025-02-28 00:01:25 +05:30

Hoppscotch Webapp Server

A secure static web server for Hoppscotch Webapp with content bundling (zstd + zip) and verification (blake3 + ed25519).

Quick Start

# Build from source
cargo build --release

# or use Docker
docker build -t hoppscotch-webapp-server .

Note

Configuration via environment variables:

  • FRONTEND_PATH: UI assets build location
  • DEFAULT_PORT: Server port (default: 3200)

API Endpoints

  • Health check: GET /health
  • Bundle manifest: GET /api/v1/manifest
  • Download bundle: GET /api/v1/bundle
  • Public key info: GET /api/v1/key

Development

cargo watch -x run     # Dev build with hot reload
cargo test            # Run tests
cargo build --release # Production build