Yaade
About this project
Yaade is an open-source, self-hosted, collaborative API development environment.

📚 Documentation
Visit docs.yaade.io.
🤔 Why did you develop Yaade?
I was looking for a self-hosted Postman alternative so that API collections can easily be shared between teammates. Even though popular solutions like Hoppscotch exist, their self-hosted app does not come with authentication and relies on Firebase for persistency. Yaade is developed from the ground up with self-hosting and security in mind. That means sensitive information in API requests can safely be stored on your own server!
🌟 Features
- Self-hosted: data never leaves your own server
- Multi-user: manage users and their permissions
- Persistent: even across container or server restarts
- Easy single-file data import / export
- Proxy requests through your browser or through the server
- REST and Websockets with Markdown documentation support
- Scripts: Run scripts as cron jobs or via the API. Execute requests or run tests all in pure JavaScript
- Import collections from OpenAPI or Postman. Export to all different languages and frameworks.
- Most importantly: dark mode default
⚡ Install
To have the best experience with Yaade run the docker container on your server and install the browser extension on your local machine.
1. 🐋 Docker
docker volume create yaade
docker run -d --restart=always -p 9339:9339 -e YAADE_ADMIN_USERNAME=admin -v yaade:/app/data --name yaade esperotech/yaade:latest
The default password is password
. After login go to ⚙️ > Account and change the password.
2. 🔧 Extension
Yaade uses a browser extension as a proxy to enable CORS requests. Install the extension using your browsers extension store. Currently only a chrome extension is available. You can find it here (Chrome) and here (Firefox). Then open it and input your server URL, eg. https://yaade.example.com/
. From that point all requests originating from your Yaade browser tabs will be proxied through the extension.
⬆️ Upgrade
To upgrade the docker container with a new version, first stop the running container, pull the latest version and start a new container with the old volume.
docker rm -f yaade
docker pull esperotech/yaade:latest
docker run -d --restart=always -p 9339:9339 -e YAADE_ADMIN_USERNAME=admin -v yaade:/app/data --name yaade esperotech/yaade:latest
💾 Technology
- SPA built with TypeScr