2.0.0 • Published 7 months ago

@urlpack/json v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

@urlpack/json

Package Version License Bundle Size

Compress JSON data into compact & URL-safe formats

  • ES Modules & Browser compatible
  • Compact output using MessagePack
  • URL safe formats (Base62, Base58)
  • Composable & Tree-shakable

Usage

const { makeJsonEncoder } from '@urlpack/json';

const encoder = makeJsonEncoder();

encoder.encode({
  href: 'http://daangn.com',
  uid: 1234567,
  context: {
    foo: 'bar',
    baz: [1,2,3,4,5],
  },
})
// => 'QL3sGqgSwhebCV6jsPsxSCG6DPGZUAo7qtLbEFxFN3bequ3qABcg6pxvpvr36FveMxCtD4zNSWSpHmxgz8'
//
// Only 82 characters, 35% smaller output than JSON.stringify + lz-string

LICENSE

MIT

2.0.0

7 months ago

1.1.0

2 years ago

1.0.5

2 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago