Release v1.0.0
Features
- Usage exactly similar to std.json
- Flexible customization with options
- More compatible, we supported both AMF0 & AMF3
Demo
var bs []byte
buf := bytes.NewBuffer(bs)
in := 1
NewEncoder().WithWriter(buf).Encode(&in)
var out int
NewDecoder().WithReader(buf).Decode(&out)