Quick Start
Installation
Install feedpipe globally with npm:
npm install -g feedpipeOr use npx to run without installing:
npx feedpipe 3000Basic Usage
-
Start your development server
Terminal window npm run dev# → Running on http://localhost:3000 -
Create a tunnel
In a new terminal:
Terminal window feedpipe 3000 -
Share the URL
┌──────────────────────────────────────────┐│ feedpipe is live! │└──────────────────────────────────────────┘URL: https://abc123.feedpipe.devExpires: 1/26/2026, 10:30:00 AMShare this URL with reviewers.Feedback will appear below in real-time.Press Ctrl+C to stop. -
Receive feedback
When reviewers add comments or highlights, you’ll see them instantly:
💬 Comment from Reviewer10:30:15 AM · /dashboardElement: button.submit-btn"The submit button should be disabled when form is invalid"
Options
Custom Slug
Use a memorable URL instead of a random one:
feedpipe 3000 --slug my-feature# → https://my-feature.feedpipe.devPassword Protection
Protect your tunnel with a password:
feedpipe 3000 --password secret123Reviewers will need to enter the password to access the tunnel.
Disable Toolbar
If you don’t want the annotation toolbar injected:
feedpipe 3000 --no-toolbarOpen in Browser
Automatically open the tunnel URL in your browser:
feedpipe 3000 --openJSON Output
For scripting and automation:
feedpipe 3000 --jsonQuiet Mode
Minimal output (errors only):
feedpipe 3000 --quietNext Steps
- Learn about AI Integration to pipe feedback to coding agents
- Explore the CLI Reference for all options
- Understand How It Works under the hood