gateway/: ParaRouter Gateway (Data Plane, Rust)hub/: ParaRouter Hub (Control Plane, Node.js BFF)web/: ParaRouter Console (Frontend UI, React/Vite)packages/: Shared libraries and types across workspaces
Run this command from the root of the workspace to install all dependencies for the Node.js/Frontend monorepo:
npm installThe Hub is a Node.js API that manages users, billing, API keys, and configurations.
# From workspace root
npm run devThe Gateway is a high-performance Rust proxy that handles LLM request forwarding.
cd gateway
cargo runBuild and preview the frontend dashboard:
# From workspace root
npm run build
npm run preview