A modern, desktop-based HTTP client optimized for
curlworkflows.
curlflow is a powerful cross-platform desktop application that bridges the gap between command-line curl usage and graphical HTTP clients. Built with Wails, it combines the performance of Go with a reactive Vue 3 frontend.

-
🔄 Curl Integration Core
- Parse: Paste complex
curlcommands directly into the UI to decompose them into editable fields (Headers, Body, Params). - Build: Visual changes to requests automatically regenerate the corresponding
curlcommand for easy sharing. - Supports flags like
-X,-H,-d,--url, and more.
- Parse: Paste complex
-
🚀 Request Management
- Execute HTTP requests (GET, POST, PUT, DELETE, etc.).
- View detailed response metrics: Status, Time, Headers, and Body with syntax highlighting.
- Organize requests using a file-based system with metadata support (Tags, Status).
-
🌍 Environment Variables
- Manage multiple environments (e.g.,
Dev,Prod). - Use variable substitution in URLs and Headers (e.g.,
{{baseUrl}}/api/v1). - Support for path parameter substitution.
- Manage multiple environments (e.g.,
-
🔌 OpenAPI / Swagger Sync
- Automatically generate and update request collections from remote OpenAPI/Swagger specifications.
- Keep your local test suite in sync with your API definitions.
-
🛠️ Developer Focused
- Local Storage: All data is stored locally in JSON files, making it version-control friendly.
- Configurable: Global settings for Proxy, TLS verification, and Timeouts.
Backend:
- Go (v1.23+)
- Wails (v2.11.0)
- Kin-OpenAPI (OpenAPI support)
- Cobra (CLI scaffolding)
Frontend:
- Vue 3 + TypeScript
- Vite (Build tool)
- Naive UI (Component library)
- Tailwind CSS (Styling)
- Pinia (State Management)
- Monaco Editor (Code editing)
Ensure you have the following installed:
go install github.com/wailsapp/wails/v2/cmd/wails@latest-
Clone the repository
git clone https://github.com/yourusername/curlflow.git cd curlflow -
Run in Development Mode This starts the Go backend and a local Vite server with hot-reload.
wails dev
-
Access The application will open in a native window. You can also access the frontend via browser at
http://localhost:34115for UI debugging.
To build a standalone binary for your OS:
wails buildThe output binary will be located in build/bin/.
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the MIT License. See LICENSE for more information.
TODO: Add specific documentation link if available TODO: Add CI/CD build status badge