github.com/valyala/fastjson
fastjson
Package fastjson provides fast JSON parsing.
Decision Signals
Health score 73/100, confidence 80/100.
Install
go get github.com/valyala/fastjson
Package Data
updated May 31, 2026| Latest version | v1.6.10 |
| Imported by | 895 packages |
| Stars | 0 |
| Forks | 0 |
| Last activity | 3 months ago |
| Latest release | Unknown |
| License | Unknown |
| Known vuln records | 0 |
API Surface
84 symbols| Symbol | Kind | Synopsis |
|---|---|---|
| Arena | Type | type Arena struct{} |
| Arena.NewArray | Method | func (a *Arena) NewArray() *Value |
| Arena.NewFalse | Method | func (a *Arena) NewFalse() *Value |
| Arena.NewNull | Method | func (a *Arena) NewNull() *Value |
| Arena.NewNumberFloat64 | Method | func (a *Arena) NewNumberFloat64(f float64) *Value |
| Arena.NewNumberInt | Method | func (a *Arena) NewNumberInt(n int) *Value |
| Arena.NewNumberString | Method | func (a *Arena) NewNumberString(s string) *Value |
| Arena.NewObject | Method | func (a *Arena) NewObject() *Value |
| Arena.NewString | Method | func (a *Arena) NewString(s string) *Value |
| Arena.NewStringBytes | Method | func (a *Arena) NewStringBytes(b []byte) *Value |
| Arena.NewTrue | Method | func (a *Arena) NewTrue() *Value |
| Arena.Reset | Method | func (a *Arena) Reset() |
Similar Packages
Go JSON Libraries#2 jsoniter
Package jsoniter implements encoding and decoding of JSON as defined in RFC 4627 and provides interfaces with identical syntax of standard lib encoding/json.
#3 GJSON
Package gjson provides searching for json strings.
#4 jsonhandlers
JSON library to expose simple handlers that lets you easily read and write json from various sources.
#5 codec
Package codec provides a High Performance, Feature-Rich Idiomatic Go codec/encoding library for binc, msgpack, cbor, json.