SkillAgentSearch skills...

Ubjson

Go package for working with Universal Binary JSON - http://ubjson.org/

Install / Use

/learn @jmank88/Ubjson
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

UBJSON GoDoc Build Status Go Report Card

A Go package implementing encoding and decoding of Universal Binary JSON (spec 12).

Features

  • Type specific methods for built-in types.

  • Automatic encoding via reflection for most types.

  • Custom encoding via Value interface.

  • Streaming support via Encoder/Decoder.

  • Support for optimized format.

  • Block format.

Usage

b, _ := ubjson.MarshalBlock(8)
// [U][8]

b, _ = ubjson.MarshalBlock("hello")
// [S][U][5][hello]

var v interface{}
...
b, _ = ubjson.Marshal(v)
// ...

See the GoDoc for more information and examples.

View on GitHub
GitHub Stars14
CategoryDevelopment
Updated5d ago
Forks4

Languages

Go

Security Score

95/100

Audited on Mar 22, 2026

No findings