A web-based interface for interacting with Claude Code CLI
npm install @sunpix/claude-code-webThis product is in alpha state. There is not authentication! So you need to bring your own via a reverse proxy.
This is the production build of Claude Code Web, a web-based interface for interacting with Claude Code CLI.
- Node.js 18+
- Claude Code CLI installed and configured
1. Git clone
``bash`
npm -g install @sunpix/claude-code-web
2. Run the app:
`bash`
claude-code-web
3. Claude is running on http://localhost:3000/
It will then listen on port 3000. BE AWARE: there is no authentication. So everyone with access to that port control your environment/computer.
To run on a different port:
`bash`
PORT=8080 claude-code-web
bash
APP_BASE_URL=/claude-code claude-code-web
``