Release notes, engineering deep dives, and practical articles about typia, TypeScript, validators, schemas, and AI tooling.
Browse by tag: benchmark (1) · bunjs (1) · computerscience (1) · function-calling (1) · javascript (8) · node (1) · opensource (9) · performance (1) · programming (6) · protobuf (1) · qwen (1) · react (1) · seminar (1) · typescript (10)

6.75% first-try function calling success becomes 100% compilation via type schemas, compilers, and structured feedback. Dissecting the harness engineering behind AutoBe and Typia.

Preface typia is a transformer library supporting superfast runtime validation, and JSON...
![[Typia] executable demo site of 20,000x faster validator (serializer)](https://media2.dev.to/dynamic/image/width=1000,height=500,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs6dzjs59w1eym6gdze24.png)
Outline https://typia.io/playground I've published an executable playground website of...
![[Typia] I made Protocol Buffer library of TypeScript, easiest in the world](https://media2.dev.to/dynamic/image/width=1000,height=500,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fu6ulot5d1jdswskmtwsv.png)
Outline import typia, { tags } from "typia"; interface IMember { id: string &...
![[Typia] Hidden Class Optimization of v8 Engine](https://media2.dev.to/dynamic/image/width=1000,height=500,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzgfggvrkoj4osgtejojc.jpg)
Preface // RUNTIME VALIDATORS export function is<T>(input: unknown | T): input is...

Summary This story is about a precursor library typescript-is: There had been an ancesor...
![[Typia] I made realtime demo site of 20,000x faster validation (+200x faster JSON stringify)](https://media2.dev.to/dynamic/image/width=1000,height=500,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3igp5x7xyc5mh67dbh3d.png)
Preface https://typia.io/playground I've made a playground website to help you understand...

Outline Hello, I am developer of typia, and studying fastify in nowadays. During the...
![[Typia] 15,000x faster TypeScript Validator and its histories](https://media2.dev.to/dynamic/image/width=1000,height=500,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frvtijd06cf7v87v30iqv.png)
Renamed to Typia https://github.com/samchon/typia Hello, I'm developer of typescript-json...

// FASTER STRINGIFY FUNCTIONS export function stringify<T>(input: T): string; // unsafe but...

Hello, I'm developer of typescript-json and have measure a benchmark comparing performance with other...