Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johan/QuickJSON
A QuickLook plugin to pretty-print (node.js style) JSON. Click to fold/unfold sub-trees!
https://github.com/johan/QuickJSON
Last synced: 3 months ago
JSON representation
A QuickLook plugin to pretty-print (node.js style) JSON. Click to fold/unfold sub-trees!
- Host: GitHub
- URL: https://github.com/johan/QuickJSON
- Owner: johan
- License: mit
- Created: 2011-03-18T12:20:21.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2021-04-12T18:17:33.000Z (over 3 years ago)
- Last Synced: 2024-05-13T16:33:05.636Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 34.2 KB
- Stars: 78
- Watchers: 6
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Mac-QuickLook - QuickJSON - print (node.js style) JSON | .json | (Plugins / Manually)
README
QuickJSON
=========A QuickLook plugin to pretty-print JSON in the terse comma-first style, e g:
```json
{ "name": "flux"
, "description": "An application architecture based on a unidirectional data flow"
, "version": "2.1.1"
, "homepage": "http://facebook.github.io/flux/"
, "repository":
{ "type": "git"
, "url": "https://github.com/facebook/flux.git"
}
, "authors":
[ "Facebook"
, "Jing Chen "
, "Bill Fisher "
, "Paul O'Shannessy "
]
}
```### Installing
To install a pre-built version for osx 10.6+,
download and unzip
[QuickJSON.qlgenerator.zip](https://github.com/downloads/johan/QuickJSON/QuickJSON.qlgenerator.zip)
into `/Library/QuickLook/` (to install system-globally),
or into `~/Library/QuickLook/` (to install for yourself only).
You may need to create this directory, if it does not exist.To get sweet copy/paste functionality from QuickLook, also run:
defaults write com.apple.finder QLEnableTextSelection -bool true
from a Terminal window,
and to refresh installed plugins afterwards:qlmanage -r
Another method, if you have [Homebrew Cask](http://caskroom.io/) installed:
```sh
brew update
brew install --cask quickjson
```To uninstall:
```sh
brew uninstall --cask quickjson
```