Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wellsjo/JSON-Splora
GUI app for editing, visualizing, and manipulating JSON data
https://github.com/wellsjo/JSON-Splora
gui javascript jq json json-splora
Last synced: about 1 month ago
JSON representation
GUI app for editing, visualizing, and manipulating JSON data
- Host: GitHub
- URL: https://github.com/wellsjo/JSON-Splora
- Owner: wellsjo
- License: mit
- Created: 2016-10-17T23:01:45.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-22T17:10:42.000Z (almost 8 years ago)
- Last Synced: 2024-10-29T17:43:23.605Z (about 1 month ago)
- Topics: gui, javascript, jq, json, json-splora
- Language: JavaScript
- Homepage:
- Size: 2.91 MB
- Stars: 1,860
- Watchers: 40
- Forks: 60
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Changelog: History.md
- License: LICENSE
Awesome Lists containing this project
- open-source-mac-os-apps - JSON-Splora - GUI for editing, visualizing, and manipulating JSON data. ![javascript_icon] (Applications / Editors)
- awesome-discoveries - JSON-Splora - GUI for editing, visualizing, and manipulating JSON _(`NodeJS`) (Dev Tools with GUI)
- open-source-mac-os-apps - JSON-Splora - GUI for editing, visualizing, and manipulating JSON data. ![javascript_icon] (Applications / Editors)
- awesome-starred - wellsjo/JSON-Splora - GUI app for editing, visualizing, and manipulating JSON data (json)
README
# JSON-Splora
**JSON-Splora** is a GUI for editing, visualizing, and manipulating JSON data with [jq](https://stedolan.github.io/jq/) or JavaScript.
![Demo](http://i.imgur.com/CiXIrrg.gif)
## Design
- Built with [Electron](http://electron.atom.io/)
- Editor and output both use [CodeMirror](https://codemirror.net/)
- Input is parsed as [json5](http://json5.org/)
- Filter with [jq](https://stedolan.github.io/jq/) or JavaScriptThe editor is a JavaScript editor, and the input is parsed as [json5](http://json5.org/). This allows for comments as well as a relaxed JSON input format. Once the editor has valid JSON, an input window will appear below, allowing you to manipulate the object with JavaScript or [jq](https://stedolan.github.io/jq/). A panel will appear to the right with the output, and updates live as the input or filter changes.
#### Input
- URLs resolve to any JSON they return
- Drag-and-drop or open any file
- Plain text input#### Filters
- First evaluated as JavaScript with `output = x${filter}`
- If JS fails, it attempts to use [jq](https://stedolan.github.io/jq/)## Command Line
```bash
jsplora [file]
```## Install
Requires at least Node version `6`.
#### Globally (cli)
This will create the application as well as the alias `jsplora`.
```bash
npm i -g json-splora
```
#### Locally
Building locally creates a directory `JSON-Splora-` which contains the application.
```
npm install# build for darwin, linux, win32
npm run-script build-darwin
npm run-script build-linux
npm run-script build-win32
```### Name Change
**JSON-Splora** is becoming **json-splora** in npm. This is because of a bug in npm's backend confusing the two packages. I am forced to release 1.0.0, deprecate "JSON-Splora", and move to "json-splora". I apologize for any inconvenience.## Contributing
Contributions are welcome! Please read through and follow the style of the rest of the code. `eslint` is used as a code pre-commit hook, and will catch many simple errors. Please squash your commits and leave concise commit messages.## License
[MIT](https://github.com/wellsjo/json-splora/blob/master/LICENSE)