Your First Project¶
Projects organize your mock endpoints. Each project runs its own HTTP server on a configurable port.
Create a Project¶
- Click New Project in the top toolbar
- Enter a name (e.g., "My API")
- Set a port number (default: 3001)
- Click Create
Your project appears in the sidebar.
Start the Server¶
- Select your project in the sidebar
- Click the Start button in the project header
- The status indicator turns green when running
Your mock server is now running at http://localhost:3001 (or your chosen port).
Test It¶
Open a terminal and run:
You'll get a 404 response - that's expected! You haven't created any endpoints yet.
Next: Learn the basic workflow