The fastest way to get LangGraph Chat UI running locally with no authentication.
- Node.js 22.13+, pnpm 10+ (the project pins pnpm 11.5.2)
- A LangGraph server running (e.g.
langgraph dev)
git clone https://github.com/teddynote-lab/langgraph-chat-ui.git
cd langgraph-chat-ui
pnpm install
pnpm launch # interactive setup — select "standalone" modeIf pnpm is unavailable or does not use the pinned version, run corepack enable and retry.
Or manually:
cd frontend
cp .env.example .env
# Edit .env: set NEXT_PUBLIC_API_URL to your LangGraph server
pnpm devOpen http://localhost:3000.
- Add authentication: see Integration Guide
- Deploy to production: see Production Deployment