Popularity
4.5
Declining
Activity
0.0
Stable
130
8
15
Programming language: Go
License: MIT License
Tags:
Json
Latest version: v1.0.3
gjo alternatives and similar packages
Based on the "JSON" category.
Alternatively, view gjo alternatives based on common mentions on social networks and blogs.
-
fastjson
Fast JSON parser and validator for Go. No custom structs, no code generation, no reflection -
trdsql
CLI tool that can execute SQL queries on CSV, LTSV, JSON, YAML and TBLN. Can output to various formats. -
marshmallow
Marshmallow provides a flexible and performant JSON unmarshalling in Go. It specializes in dealing with unstructured struct - when some fields are known and some aren't, with zero performance overhead nor extra coding needed. -
epoch
Contains primitives for marshaling/unmarshaling Unix timestamp/epoch to/from built-in time.Time type in JSON -
JSON Data Manager
JSON Data Manager is a Go library designed to efficiently manage and filter JSON data from files -
jsonhandlers
JSON library to expose simple handlers that lets you easily read and write json from various sources.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of gjo or a related project?
README
gjo
Small utility to create JSON objects.
This was inspired by jpmens/jo.
[sreenshot](./screenshot.png)
Support OS
- Mac
- Linux
- Windows
Requirements
- Go 1.1.14~
- Git
Installtion
Build
$ git clone https://github.com/skanehira/gjo.git
$ cd gjo
$ GO111MODULE=on go install
Binary
Please download from releases
Usage
Mac and Linux
$ gjo -p status=$(gjo name=gorilla age=26 lang=$(gjo -a Go Java PHP))
{
"status": {
"age": 26,
"lang": [
"Go",
"Java",
"PHP"
],
"name": "gorilla"
}
}
$ gjo -h
Usage of gjo:
-a creates an array of words
-p pretty-prints
-v show version
Windows
If you want to use $()
on the Windows, please install shellwrap.
shellwrap gjo -p status=$(gjo name=gorilla age=26)
Author
gorilla0513