A REST client that is both easy to use, efficient, and extendable.
As many REST clients exist in the ecosystem, Trufos aims to provide an out-of-the-box experience that is fast, user-friendly, and customizable. Below is an overview of current and planned features:
| Feature | Status | Notes |
|---|---|---|
| Project maturity | 🚧 Early Stage | Active development; APIs & data shapes may evolve |
| Offline usage (no registration / login) | ✅ Implemented | Works fully offline; all data stored locally |
| Cross-platform (Win / macOS / Linux) | ✅ Implemented | Electron-based distribution with native packaging |
| Handling of large request & response payloads | ✅ Implemented | Streamed & chunked processing keeps UI responsive |
| Version control-friendly collections | ✅ Implemented | Collections stored as JSON for easy diff & collaboration |
| Third party collection import | 🚧 Partially | Currently supports Postman |
| Environment & variable management | ✅ Implemented | Named environments with scoped variables |
| Authentication (JWT, OAuth 2.0, Basic) | ✅ Implemented | Strategy factory incl. OAuth2 client credentials |
| Scripting (custom request/response handling) | 🛠Planned | Script engine & sandbox design in progress |
| Plugin architecture / extensions | 🛠Planned | Extensible API for third-party integrations |
If you would like to contribute to this project, please check out our Contributing Guidelines.
Grab the latest release from the GitHub Releases page and install it for your platform:
- Windows: Download the
Setup.exeinstaller - macOS: Download the
.dmgimage - Linux: Download the
.ziparchive (native.debpackaging planned)
No account or telemetry is required—Trufos runs locally and keeps your data on your machine.
As Trufos is an Electron application, it can run on Windows, macOS, and Linux without any issues. If you want to develop or build this software yourself, you will need Node.js version 22. We use yarn and not NPM in this project as it can better handle peer dependencies. Do not install dependencies with NPM!
- Clone this repository
- Run
yarn installto install all dependencies - Run
yarn startto start the application in development mode
- Run
yarn installto install all dependencies - Run
yarn run maketo build the application for your platform - The built application will be in the
out/makedirectory- Windows: a
Setup.exefile - macOS: a
.dmgfile - Linux: currently a ZIP file (
.debfile is planned)
- Windows: a
Once Trufos is installed and launched, you can start adding endpoints, customizing them, and making calls.
Here’s a simple example of how to add and utilize an endpoint:
- Click on "Create New Request".
- Enter the URL.
- Select the method (
GET,POST, etc.). - Optionally, add headers and body content.
- Click "Send Request" and review the response in the results area.
You can import existing Postman collections to migrate quickly:
- Open the collection import view.
- Select the Postman collection file or directory.
- Confirm import; Trufos will convert and persist it under a folder named after the collection title.
Collections are saved in a version-control-friendly JSON structure so you can diff and review changes.
Define multiple environments (e.g., dev, staging, prod) each with its own variables. Selecting an environment scopes variable resolution for requests. Variables and environments are also stored as JSON ensuring easy collaboration.
Trufos uses IPC push streams to process large request/response bodies incrementally. This avoids blocking the UI and keeps memory usage lower when dealing with multi-megabyte payloads.
| Command | Description |
|---|---|
yarn start |
Run the app in development mode (Electron + Vite) |
yarn make |
Package distributables for the current OS |
yarn test |
Execute Vitest test suite |
yarn lint |
Run ESLint over TypeScript & React sources |
yarn prettier |
Format code (TS/TSX) with Prettier |
yarn prettier-check |
Check formatting without writing changes |
| Item | Status | Notes |
|---|---|---|
| Scripting engine (request/response hooks) | Planned | Execution sandbox & dependency management design |
| Plugin architecture | Planned | Public extension API & lifecycle hooks |
| More auth strategies (Hawk, NTLM, etc.) | Planned | Evaluating demand & libraries |
Linux native packaging (.deb) |
Planned | Electron Forge configuration WIP |
| Improved collection diff tooling | Planned | Visual diff & merge assistance |
| Performance profiling view | Planned | Inspect timing & size insights |
| Accessibility enhancements | Planned | WCAG compliance audit scheduled |
- Where can I find the saved Requests?
- The saved requests are in this folder:
- Mac:
~/Library/Application\ Support/Trufos/default-collection - Windows:
C:\Users\USERNAME\AppData\Roaming\Trufos\default-collection
- Mac:
If you would like to contribute to this project, please check out our Contributing Guidelines and Code of Conduct before you begin.
We welcome feedback, suggestions, and pull requests!
Licensed under GPL v3.0.

