Skip to content

alanmacleod/L7

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

L7

Lossless LZW codec implementation; fast, small, simple.

This is such an awesome algorithm with an intuitive implementation, good compression and highly versatile. Can use this package to quickly compress data in the browser before sending and unpacking server-side.

var L7 = require('l7');

var data = "Hello I am a string of data to be compressed. I can be a simple string or an arraybuffer, pass either to the compress() method";

var compressed = L7.compress(data);

About

Lossless LZW compression codec implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published