# json **Repository Path**: ghink/json ## Basic Information - **Project Name**: json - **Description**: A JSON library that uses conditional compilation to be compatible with different architectures - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-10 - **Last Updated**: 2026-06-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # json A JSON library that uses conditional compilation to be compatible with different architectures. Based on [bytedance/sonic](https://github.com/bytedance/sonic) and [goccy/go-json](https://github.com/goccy/go-json) ## Requirement - Go: 1.25.0+ ## Features - Uses conditional compilation to be compatible with different architectures. ## Usage ### Marshal/Unmarshal Default behaviors are mostly consistent with `encoding/json`. ```go import "go.gh.ink/json" var data YourSchema // Marshal output, err := json.Marshal(&data) // Unmarshal err := json.Unmarshal(output, &data) ```