āā āāāāāāā āāāāāā āāā āā āāāāā āāāāāāā
āā āā āā āā āāāā āā āā āā āā
āā āāāāāāā āā āā āā āā āā āāāāā āāāāāāā āāāāāāā
āā āā āā āā āā āā āā āā āā āā āā
āāāāā āāāāāāā āāāāāā āā āāāā āā āā āāāāāāā
AssemblyScript - v1.0.0-beta.3
š About
JSON is the de-facto serialization format of modern web applications, but its serialization and deserialization remain a significant performance bottleneck, especially at scale. Traditional parsing approaches are computationally expensive, adding unnecessary overhead to both clients and servers. This library is designed to mitigate this by leveraging SIMD acceleration and highly optimized transformations.
š Contents
š¾ Installation
npm install json-as@1.0.0-beta.3
Add the --transform
to your asc
command (e.g. in package.json)
--transform json-as/transform
Alternatively, add it to your asconfig.json
{
"options": {"transform": ["json-as/transform"]}
}
If you'd like to see the code that the transform generates, run with JSON_DEBUG=true
šŖ Usage
import { JSON } from "json-as";
@json
class Vec3 {
x: f32 = 0.0;
y: f32 = 0.0;
z: f32 = 0.0;
}
@json
class Player {
@alias("first name")
firstName!: string;
lastName!: string;
lastActive!: i32[];
@omitif((self: Player) => self.age < 18)
age!: i32;
@omitnull()
pos!: Vec3 | null;
isVerified!: boolean;
}
const player: Player = {
firstName: "Jairus",
lastName: "Tanaka",
lastActive: [2, 13, 2025],
age: 18,
pos: {
x: 3.4,
y: 1.2,
z: 8.3
},
isVerified: true
};
const serialized = JSON.stringify<Player>(player);
const deserialized = JSON.parse<Player>(serialized);
console.log("Serialized " + serialized);
console.log("Deserialized " + JSON.stringify(deserialized));
š Examples
š·ļø Omitting Fields
This library allows selective omission of fields during serialization using the following decorators:
@omit
This decorator excludes a field from serialization entirely.
@json
class Example {
name!: string;
@omit
secret!: string;
}
const obj = new Example();
obj.name = "Visible";
obj.secret = "Hidden";
console.log(JSON.stringify(obj));
@omitnull
This decorator omits a field only if its value is null.
@json
class Example {
name!: string;
@omitnull()
optionalField!: string | null;
}
const obj = new Example();
obj.name = "Present";
obj.optionalField = null;
console.log(JSON.stringify(obj));
@omitif((self: this) => condition)
This decorator omits a field based on a custom predicate function.
@json
class Example {
name!: string;
@omitif((self: Example) => self.age < 18)
age!: number;
}
const obj = new Example();
obj.name = "John";
obj.age = 16;
console.log(JSON.stringify(obj));
If age were 18 or higher, it would be included in the serialization.
š³ļø Using nullable primitives
AssemblyScript doesn't support using nullable primitive types, so instead, json-as offers the JSON.Box
class to remedy it.
For example, this schema won't compile in AssemblyScript:
@json
class Person {
name!: string;
age: i32 | null = null;
}
Instead, use JSON.Box
to allow nullable primitives:
@json
class Person {
name: string;
age: JSON.Box<i32> | null = null;
constructor(name: string) {
this.name = name;
}
}
const person = new Person("Bob");
console.log(JSON.stringify(person));
person.age = new JSON.Box<i32>(18);
console.log(JSON.stringify(person));
š¤ Working with unknown or dynamic data
Sometimes it's necessary to work with unknown data or data with dynamic types.
Because AssemblyScript is a statically-typed language, that typically isn't allowed, so json-as provides the JSON.Value
and JSON.Obj
types.
Here's a few examples:
Working with multi-type arrays
When dealing with arrays that have multiple types within them, eg. ["string",true,null,["array"]]
, use JSON.Value[]
const a1 = JSON.parse<JSON.Value[]>('["string",true,null,["array"]]');
console.log(JSON.stringify(a[0]));
console.log(JSON.stringify(a[1]));
console.log(JSON.stringify(a[2]));
console.log(JSON.stringify(a[3]));
Working with unknown objects
When dealing with an object with an unknown structure, use the JSON.Obj
type
const o1 = JSON.parse<JSON.Obj>('{"a":3.14,"b":true,"c":[1,2,3],"d":{"x":1,"y":2,"z":3}}');
console.log(o1.keys().join(" "));
console.log(
o1.values()
.map<string>((v) => JSON.stringify(v))
.join(" ")
);
const y = o1.get("d").get<JSON.Obj>().get<i32>();
console.log('o1["d"]["y"] = ' + y.toString());
Working with dynamic types within a schema
More often, objects will be completely statically typed except for one or two values.
In such cases, JSON.Value
can be used to handle fields that may hold different types at runtime.
@json
class DynamicObj {
id: i32 = 0;
name: string = "";
data!: JSON.Value;
}
const obj = new DynamicObj();
obj.id = 1;
obj.name = "Example";
obj.data = JSON.parse<JSON.Value>('{"key":"value"}');
console.log(JSON.stringify(obj));
obj.data = JSON.Value.from<i32>(42);
console.log(JSON.stringify(obj));
obj.data = JSON.Value.from("a string");
console.log(JSON.stringify(obj));
šļø Using Raw JSON strings
Sometimes its necessary to simply copy a string instead of serializing it.
For example, the following data would typically be serialized as:
const m1 = new Map<string, string>();
m1.set('pos', '{"x":1.0,"y":2.0,"z":3.0}');
const a1 = JSON.stringify(m1);
console.log("a1: " + a1);
If, instead, one wanted to insert Raw JSON into an existing schema/data structure, they could make use of the JSON.Raw type to do so:
const m1 = new Map<string, JSON.Raw>();
m1.set('pos', new JSON.Raw('{"x":1.0,"y":2.0,"z":3.0}'));
const a1 = JSON.stringify(m1);
console.log("a1: " + a1);
āļø Using custom serializers or deserializers
This library supports custom serialization and deserialization methods, which can be defined using the @serializer
and @deserializer
decorators.
Here's an example of creating a custom data type called Point
which serializes to (x,y)
@json
class Point {
x: f64 = 0.0;
y: f64 = 0.0;
constructor(x: f64, y: f64) {
this.x = x;
this.y = y;
}
@serializer
serializer(self: Point): string {
return `(${self.x},${self.y})`;
}
@deserializer
deserializer(data: string): Point {
const dataSize = bytes(data);
if (dataSize <= 2) throw new Error("Could not deserialize provided data as type Point");
const c = data.indexOf(",");
const x = data.slice(1, c);
const y = data.slice(c + 1, data.length - 1);
return new Point(
f64.parse(x),
f64.parse(y)
);
}
}
The serializer function converts a Point
instance into a string format (x,y)
.
The deserializer function parses the string (x,y)
back into a Point
instance.
These functions are then wrapped before being consumed by the json-as library:
@inline __SERIALIZE_CUSTOM(ptr: usize): void {
const data = this.serializer(changetype<Point>(ptr));
const dataSize = data.length << 1;
memory.copy(bs.offset, changetype<usize>(data), dataSize);
bs.offset += dataSize;
}
@inline __DESERIALIZE_CUSTOM(data: string): Point {
return this.deserializer(data);
}
This allows custom serialization while maintaining a generic interface for the library to access.
ā” Performance
The json-as
library has been optimized to achieve near-gigabyte-per-second JSON processing speeds through SIMD acceleration and highly efficient transformations. Below are some key performance benchmarks to give you an idea of how it performs.
Raw Performance
Simple
Vector3 Object | 32,642,320 ops/s | 9,736,272 ops/s | 1,240 MB/s | 369 MB/s |
Alphabet String | 4,928,856 ops/s | 7,567,360 ops/s | 975 MB/s | 1,498 MB/s |
Small JSON Object | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
Medium JSON Object | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
Large JSON Object | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
SIMD
Vector3 Object | 32,642,320 ops/s | 9,736,272 ops/s | 1,240 MB/s | 369 MB/s |
Alphabet String | 20,368,584 ops/s | 28,467,424 ops/s | 3,910 MB/s | 5,636 MB/s |
Small JSON Object | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
Medium JSON Object | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
Large JSON Object | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
JavaScript
Vector3 Object | 2,548,013 ops/s | 1,942,440 ops/s | 97 MB/s | 73 MB/s |
Alphabet String | 3,221,556 ops/s | 2,716,617 ops/s | 624 MB/s | 537 MB/s |
Small JSON Object | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
Medium JSON Object | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
Large JSON Object | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
Real-World Usage
Web API Response | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
Database Entry | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
File Parsing | [Fill Value] | [Fill Value] | [Fill Value] | [Fill Value] |
š License
This project is distributed under an open source license. You can view the full license using the following link: License
š« Contact
Please send all issues to GitHub Issues and to converse, please send me an email at me@jairus.dev
2025-02-25 - 1.0.0-beta.3
- feat: change
JSON.Raw
to actual class to facilitate proper support without transformations
- fix: remove old
JSON.Raw
logic from transform code