JSON Orbit is a modern, all-in-one JSON explorer that allows you to view, analyze, and visualize data in an easy way. It features a rich viewer, graph-based JSON map, JSON↔TOON converter, and a clean, dark-themed interface in a lightweight, Docker-ready application.
Designed from scratch to be the smart and fast successor of classic JSON utilities, JSON Orbit is one of the early adopters of TOON — a compact, human-readable encoding of the JSON data model optimized for LLM prompts.
Live Demo: https://app.jsonorbit.com/
Website: https://jsonorbit.com/
- Rich JSON Viewer: Interactive and intuitive visualization of complex JSON structures
- Graph-based JSON Map: Visual node-based representation to explore data relationships
- JSON↔TOON Converter: Seamless conversion between JSON and TOON formats with real-time updates
- Dual Editors: Dedicated editors for both JSON and TOON with syntax highlighting and auto-formatting
- Real-time Validation: Instant feedback on syntax errors to ensure data integrity
- Dark/Light Themed Interface: Beautiful, clean UI with both light and dark mode
- Property Table: Detailed property inspector for deep data exploration
- Lightweight & Fast: Optimized performance with minimal dependencies
- Docker-Ready: Easy deployment with included Docker configuration with optional SSL support
The fastest way to try JSON Orbit without any installation:
npx jsonorbitThis will start the application locally and open it in your browser.
To set up a development environment:
-
Clone the repository:
git clone https://github.com/Sanjeet990/JSON-Orbit.git cd JSON-Orbit -
Install dependencies:
npm install
-
Start the development server:
npm run dev
-
Open in browser: Navigate to the URL shown in the terminal (usually
http://localhost:5173).
The easiest way to run JSON Orbit using the pre-built Docker image:
docker run -d --name jsonorbit --restart unless-stopped \
-v "./certs:/certs" \
-p 9696:80 \
-p 9697:443 \
-e NODE_ENV=production \
sanjeet990/jsonorbit:latestThen open your browser to http://localhost:9696 (or https://localhost:9697 if SSL is configured).
Docker Hub: https://hub.docker.com/r/sanjeet990/jsonorbit
If you prefer to build the Docker image locally from the repository:
-
Clone the repository:
git clone https://github.com/Sanjeet990/JSON-Orbit.git cd JSON-Orbit -
Build the Docker image:
docker build -t jsonorbit . -
Run the container:
docker run -d --name jsonorbit --restart unless-stopped \ -v "./certs:/certs" \ -p 9696:80 \ -p 9697:443 \ -e NODE_ENV=production \ jsonorbit
JSON Orbit supports optional SSL/HTTPS. To enable SSL:
-
Create a certs directory in your host machine with your SSL certificates:
certs/ ├── server-crt.pem (Your SSL certificate) └── server-key.pem (Your SSL private key - no passphrase) -
Mount the certificates volume when running the container:
docker run -d --name jsonorbit --restart unless-stopped \ -v "./certs:/certs" \ -p 9696:80 \ -p 9697:443 \ sanjeet990/jsonorbit:latest
The server will automatically detect the certificates and enable HTTPS on port 443, with HTTP on port 80 redirecting to HTTPS.
Without SSL: Simply run the container without the -v "./certs:/certs" volume mount and skip the -p 9697:443 port mapping. The server will run in standard HTTP mode.
- Frontend: React + Vite
- Styling: Tailwind CSS
- Build Tool: Vite
- Container: Docker with Nginx
- Package Manager: npm
JSON Orbit works on all modern browsers:
- Chrome/Chromium (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
TOON is a compact, human-readable encoding of the JSON data model designed for use in LLM prompts. JSON Orbit is one of the early adopters of this format, providing seamless conversion between JSON and TOON.
Learn more about TOON: https://toonformat.dev/
Contributions are welcome! Please feel free to submit issues, fork the repository, and create pull requests.
This project is licensed under the MIT License - see the LICENSE file for details.
- Developer Portfolio: https://sanjeetpathak.com/
- Buy Me A Coffee: https://buymeacoffee.com/sanjeet990
- Email: hello@sanjeetpathak.com
- GitHub: https://github.com/Sanjeet990
Made with ❤️ by Sanjeet Pathak