Browse, filter and manipulate your JSON inside the browser.
- Fetch local and external JSON or paste local code
- Filter JSON like you would filter JS objects in the browser (e.g.
data.values[1].message
) - Copy filtered output to your clipboard as a javascript object or JSON string
- Manipulate filtered output in your browser's javascript console
Live version hosted at jsonbrowse.com.
To run development server:
git clone https://github.com/jorilallo/jsonbrowse.git
cd jsonbrowse
npm install
npm run dev
To build and start production server:
npm run build
npm run start
JSON Browse is build using next.js
, styled-components
and
easily deployable using now
.
JSON Browse's all external requests are proxied with jsonbrowse-proxy
which only adds CORS headers (no logging is performed). Local requests are made directly so calling localhost
is possible.
MIT