Voiden - A Markdown based Open Source Alternative to Postman (github.com)
from dhruv3006@lemmy.world to selfhosted@lemmy.world on 06 Mar 14:40
https://lemmy.world/post/43922166

Voiden is an offline-first, git-native API tool built on Markdown - and it very intentionally didn’t start as “let’s build a better Postman”.

Over time, API tooling became heavyweight: cloud dependencies for local work, forced accounts, proprietary formats, and workflows that break the moment you’re offline. Testing a localhost API shouldn’t need an internet connection.

So we asked a simple question: What if an API tool respected how developers already work?

That led to a few core ideas:

We opensourced Voiden because extensibility without openness just shifts the bottleneck.

If workflows should be transparent, the tool should be too.

Github : github.com/VoidenHQ/voiden

Download here : voiden.md/download

#selfhosted

threaded - newest

wet_bones@lemmy.4d2.org on 06 Mar 14:48 next collapse

All of that when I can just keep using emacs’ restclient.

Telorand@reddthat.com on 06 Mar 18:38 collapse

Emacs is not that hard. You can learn Emacs in one day, every day!

chrash0@lemmy.world on 06 Mar 16:48 next collapse

i’ve been looking for a silver bullet in this space. hurl[1] seems promising as well. i feel like Bruno has always been jank, and going 1.0 didn’t help. at work i’ve stuck to vibe coding my API test code with a stack of TOML configs, that way i get to reuse/test my client code as well.

what i want is something version controllable with lightweight dependencies that i can automate easily. i’m afraid that discounts this project. not going to ask my team to download Yet Another Electron API client UI. i’m hesitant to introduce hurl, which can at least be scripted.

1: hurl.dev

fluckx@lemmy.world on 06 Mar 18:15 next collapse

That’s cool. I’ll look into that

nikolasdimi@lemmy.world on 06 Mar 20:33 collapse

awesome

nikolasdimi@lemmy.world on 06 Mar 20:32 collapse

hey, nikolas here (part of the team of Voiden)- I am keen to understand more if you dont mind. Which of the preferences you mentioned discounts this project? the version control and lightweight?

I guess you are you referring to the tool being on Electron (Since the version control is handled through the native git integration)?

We used electron cause allows to deliver the same experience across Windows, macOS, and Linux, and makes it easier to iterate quickly in these early stages.

a few points:

  • Some apps do feel heavy because of how they are structured : monolithic cores, always-on cloud layers, or unnecessary background services. Voiden is (intentionally) built with a lightweight core: offline-first, Git-native, and without extra baggage.

  • Voiden uses a plugin architecture. This means that we have a small core and all the extra functionality is optional (users can enable or disable plugins) so the base app stays small while the ecosystem can grow. Community contributions or advanced features don’t inflate the core, they live in plugins that users opt into.

At the same time, there is no special tie to Electron :) We evaluated other options as well but we felt they didn’t offer the same support for all the features we wanted to deliver.

But we intentionally designed the plugin SDK to be framework-agnostic, leaving the door open to switch the core to a different framework in the future if it makes sense.The goal is a tool that stays lean, extensible, and adaptable as it evolves.

apologies for the long answer - hope it makes sense?

melfie@lemy.lol on 06 Mar 20:05 next collapse

Postman never appealed me for these exact reasons, and I usually just use curl, but this looks like a great option.

nikolasdimi@lemmy.world on 06 Mar 20:17 next collapse

yap, I think the plain text all the way from design, tests and docs is powerful. Looking forward to any thoughts you might have when you try.

nikolasdimi@lemmy.world on 06 Mar 20:34 collapse

welcome to try and share your feedback here or here: github.com/VoidenHQ/voiden :)

danielquinn@lemmy.ca on 06 Mar 22:42 collapse

Or, justuse.org/curl/

ReginaPhalange@lemmy.world on 06 Mar 23:08 next collapse

Hate this elitist shit. Just for once try to work with other humans on a tech project that requires collaboration.
Postman strike a balance between technical and user friendly.
RTFM for curl for everyone is alienating for a a lot of people.

dudesss@lemmy.ca on 06 Mar 23:32 collapse

I’m liking seeing both these opinions side by side. Both sound great.

Someone wants to spoon feed me curl commands, like thanks :-)

Someone wants to spoon me a UI which I can’t curl, thanks eh :-)

baod_rate@programming.dev on 07 Mar 00:15 collapse

Or for a more purpose built wrapper (for the same use cases as postman): hurl.dev