Go to file
2024-06-01 13:32:26 -04:00
.github/workflows Update Rust version in Github CI workflow. 2023-07-08 14:51:14 -04:00
examples Keep control characters escaped for ys command. 2023-05-28 13:00:37 -04:00
logo Add project logo. 2022-02-06 21:13:02 -08:00
src Add [sexp] feature and :writesexp function to write input to a file as a sexp. 2024-06-01 13:32:26 -04:00
.gitignore Update README.md with updated installation instructions and info about the website. 2022-02-21 22:03:01 -08:00
Cargo.lock v0.9.0 Release 2023-07-16 22:12:03 -04:00
Cargo.toml Add [sexp] feature and :writesexp function to write input to a file as a sexp. 2024-06-01 13:32:26 -04:00
CHANGELOG.md Add [sexp] feature and :writesexp function to write input to a file as a sexp. 2024-06-01 13:32:26 -04:00
dev-tmux Initial commit; some rough proof of concept input code. 2021-04-18 21:09:19 -07:00
LICENSE Add MIT license. 2021-04-23 23:45:05 -07:00
README.md Update Arch Linux package URL in README.md (#139) 2023-11-28 23:48:21 -05:00
RELEASE_CHECKLIST.md Add clarifying note to RELEASE_CHECKLIST.md because I messed up the first time. 2023-07-16 22:32:19 -04:00
SEARCH.md Functional Search! 2021-11-13 18:30:02 -08:00

jless logo and mascot

jless is a command-line JSON viewer. Use it as a replacement for whatever combination of less, jq, cat and your editor you currently use for viewing JSON files. It is written in Rust and can be installed as a single standalone binary.

ci

Features

  • Clean syntax highlighted display of JSON data, omitting quotes around object keys, closing object and array delimiters, and trailing commas.
  • Expand and collapse objects and arrays so you can see both the high- and low-level structure of the data.
  • A wealth of vim-inspired movement commands for efficiently moving around and viewing data.
  • Full regex-based search for finding exactly the data you're looking for.

jless currently supports macOS and Linux. Windows support is planned.

Installation

You can install jless using various package managers:

Operating System / Package Manager Command
macOS - HomeBrew brew install jless
macOS - MacPorts sudo port install jless
Linux - HomeBrew brew install jless
Arch Linux pacman -S jless
Void Linux sudo xbps-install jless
NetBSD pkgin install jless
FreeBSD pkg install jless
From source (Requires Rust toolchain) cargo install jless

The releases page also contains links to binaries for various architectures.

Dependencies

On Linux systems, X11 libraries are needed to build clipboard access if building from source. On Ubuntu you can install these using:

sudo apt-get install libxcb1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev

Website

jless.io is the official website for jless. Code for the website is contained separately on the website branch.

The mascot of the jless project is Jules the jellyfish.

jless mascot

Art for Jules was created by annatgraphics.

License

jless is released under the MIT License.