Popularity
4.4
Growing
Activity
0.3
-
87
8
10
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. -
json2go
Advanced JSON to Go struct conversion. Provides package that can parse multiple JSON documents and create struct to fit them all. -
go-jsonerror
Go-JsonError is ment to allow us to easily create json response errors that follow the JsonApi spec. -
epoch
Contains primitives for marshaling/unmarshaling Unix timestamp/epoch to/from built-in time.Time type in JSON. -
ask
Easy access to nested values in maps and slices. Works in combination with encoding/json and other packages that "Unmarshal" arbitrary data into Go data-types.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of gjo or a related project?
Popular Comparisons
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