Skip to content

A Golang implementation of a simple json format tool

License

Notifications You must be signed in to change notification settings

leobuzhi/asjson

Repository files navigation

A Golang implementation of a simple json format tool

Build Status codecov Go Report Card

Test

go test ./...

Installation

go get github.com/leobuzhi/asjson

Useage

echo "[1 , 2 ,   3 ]" | asjson -min
#output:
#[1,2,3]
echo '{"key1":  1,"key2":  "2"}' | asjson 
#output:
# {
#   "key1":1,
#   "key2":"2"
# }

Benchmark

go test -bench .
#1000	   2167372 ns/op

Contributing

Contributions are welcomed and greatly appreciated.

License

asjon is under the GPL license.

About

A Golang implementation of a simple json format tool

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages