Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 980 Bytes

README.md

File metadata and controls

44 lines (28 loc) · 980 Bytes

Kati ⚡

Extremely fast JSON serializer and deserializer

Installation

~ npm install kati

Features

  • Extremely fast 🔥
  • Works in the browser 🍻
  • Works with JSON 🚀

Usage

const kati = require('kati')

const serialized = kati.stringify({
    hello: 'world',
    array: ['Hey!', 3.14]
})

console.log('Serialized: ' + stringified)

const deserialized = kati.parse(serialized)

console.log('Deserialized: ' + deserialized)

Benchmarks

Serialize Array

Array

Serialize Object

Object

Serialize String

String