1.2.2 • Published 4 years ago

searilie v1.2.2

Weekly downloads
2,678
License
ISC
Repository
github
Last release
4 years ago

Searilie

Greenkeeper badge Build Status GitHub issues codecov devDependencies Status dependencies Status bundle size

This library tries to encode data to a very small payload, useful when you want to add data to url query parameters

Limitations

  • It can only store array of objects
  • each object on array must have same keys (name and number of keys)
  • it can only serialize string and number values nothing else
  • while decoding we need to pass a spec for our object

Example:

import {Searilie} from "./src/Searilie"
import {TinyCompressor} from "./src/adapters/TinyCompressor"
const serialization = new Searilie(new TinyCompressor()); // or use CSVCompressor
console.log(serialization.encode([{a: "k", b: 5}, {a: "c", b: 9}])); // Ak5c9

Tiny compressor:

can only compress 1 character values, but produces tiny payloads,

Tiny Number Compressor

This compressor only numbers by serializing into base 36 values saving some space, But in order to serialize and deserialize, it requires to know the number of spaces to allocate in advance.

Tiny number compressor accepts a key to char length factory, which is to provide number of spaces to allocate for a given key,

For our example, let's say our object looks like this: {a: 100, b: 1, c: 2} and we know for a fact that b and c won't go above the value 35, then we can use the following

import {Searilie, ValueType} from "./src/Searilie"; 
import {TinyNumberCompressor} from "./src/adapters/TinyNumberCompressor"
const tinyNumberCompressor = new TinyNumberCompressor((key) => key === "a" ? 2 : 1);
const searlie = new Searilie(tinyNumberCompressor);
searlie.encode([{a: 100, b: 25, c: 9}]); // C2sp9
searlie.decode("C2sp9", {a: ValueType.Number, b: ValueType.Number, c: ValueType.Number}); // [{a: 100, b: 25, c: 9}]

Choosing correct space values:

Number of spaces are determined by ((36 ^ N) - 1) (36 ** n) - 1 where N is number of spaces, for a quick references here are first 5 values:

  • n = 1 gets you from 0 - 35
  • n = 2 gets you from 0 - 1295
  • n = 3 gets you from 0 - 46655
  • n = 4 gets you from 0 - 1679615
  • n = 5 gets you from 0 - 60466175

CSVCompressor

separates data using , and ; producing larger payloads, but it can support more than 1 character payloads:

import {Searilie} from "./src/Searilie"
import {CSVCompressor} from "./src/adapters/CSVCompressor"; 
const serialization = new Searilie(new CSVCompressor());
console.log(serialization.encode([{a: "kick", b: 51}, {a: "cat", b: 92}])); // Bkick,51;cat,92

Deserialization

the first character on encoded payload denotes which compressor was used, we need to use the same compressor to ensure we don't load everything at once, we don't import everything and check it for you.

import {Searilie, ValueType} from "./src/Searilie"
import {CSVCompressor} from "./src/adapters/CSVCompressor"; 
const serialization = new Searilie(new CSVCompressor());
console.log(serialization.decode("Bkick,51;cat,92", {a: ValueType.String, b: ValueType.Number})); // [{a: "kick", b: 51}, {a: "cat", b: 92}]
console.log(serialization.decode("Bkick,51;cat,92", {myKey: ValueType.String, newKey: ValueType.Number})); // [{myKey: "kick", newKey: 51}, {myKey: "cat", newKey: 92}]

With headers

by trading off some character spaces, we can also encode data with keys so we don't need to provide schema while decoding

import {Searilie} from "./src/Searilie"
import {CSVCompressor} from "./src/adapters/CSVCompressor"; 
const serialization = new Searilie(new CSVCompressor());
console.log(serialization.encodeWithHeaders([{a: "kick", b: 51}, {a: "cat", b: 92}])); // Ba,|b:kick,51;cat,92
console.log(serialization.decodeUsingHeaders("Ba,|b:kick,51;cat,92")); // [{a: "kick", b: 51}, {a: "cat", b: 92}]
1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.0

5 years ago

1.0.0

5 years ago