1.0.0 • Published 5 years ago

tson-js v1.0.0

Weekly downloads
3
License
MIT
Repository
-
Last release
5 years ago

TSON

Tiny-JSON Stringify And Parse. Reduce JSON Size By ~50%

Installation

$ npm install tson-js --offline

Usage

Node

const { parse, stringify } = require('tson-js')

const stringified = stringify({ key: 'value'})

console.log(stringified)

const parsed = parse(stringified)

console.log(parsed)

Browser

<script src="https://unpkg.com/tson-js@1.0.0/browser.js"></script>
const { parse, stringify } = TSON

const stringified = stringify({ key: 'value'})

console.log(stringified)

const parsed = parse(stringified)

console.log(parsed)
1.0.0

5 years ago