Originally published byDev.to
If you work with APIs, you probably do this multiple times a day:
- Copy JSON
- Open a random JSON viewer website
- Paste it
- Scroll and search
It works. But it’s slow and repetitive.
The problem
Most JSON tools today are:
- Web-based (you paste your data into third-party sites)
- Slow and ad-heavy
- Not composable
Also, sometimes you’re dealing with sensitive data — and pasting it into random websites is not ideal.
A simpler way
Instead of sending your data to tools…
👉 bring the tools to your data.
I built a small project called IsoBrowse to explore this idea.
Example
/get https://jsonplaceholder.typicode.com/posts | /run jq "0.title"
That’s it.
No copy/paste. No extra tabs.
Why this feels better
- Everything runs locally
- No setup or dependencies
- You stay in one flow
- You can chain operations
Example:
/get https://jsonplaceholder.typicode.com/posts \
| /run jq "0.title" \
| /run uppercase
Where this helps
Small things you do every day:
- Checking API responses
- Extracting fields from JSON
- Debugging data
- Cleaning logs
Individually small — but they add up.
Final thought
We got used to sending our data to tools.
Maybe it’s time to flip that:
process everything locally, instantly
Repo + demo:
https://github.com/igtumt/isobrowse
🇺🇸
More news from United StatesUnited States
NORTH AMERICA
Related News
What Does "Building in Public" Actually Mean in 2026?
19h ago
The Agentic Headless Backend: What Vibe Coders Still Need After the UI Is Done
19h ago
Why I’m Still Learning to Code Even With AI
21h ago
I gave Claude a persistent memory for $0/month using Cloudflare
1d ago
NYT: 'Meta's Embrace of AI Is Making Its Employees Miserable'
1d ago

