Giter Site home page Giter Site logo

hzuleo / lzma-js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lzma-js/lzma-js

0.0 2.0 0.0 12.63 MB

A JavaScript implementation of the Lempel-Ziv-Markov (LZMA) chain compression algorithm

Home Page: http://nmrugg.github.io/LZMA-JS/

License: MIT License

Makefile 0.05% JavaScript 99.80% Shell 0.15%

lzma-js's Introduction

LZMA Everywhere Travis CI

LZMA-JS is a JavaScript implementation of the Lempel-Ziv-Markov (LZMA) chain compression algorithm.

NPM
NPM

What's New in 2.x

Two things: speed & size.

LZMA-JS 2.x now minifies to smaller than one fourth of 1.x and in some cases is 1,000x faster (particularly with high compression).

It is also more modular. The compression and decompression algorithms can be optionally separated to shrink the file size even more.

Here are some file size stats:

Filename Method(s) Minified Gzipped
lzma_worker.js both 23.4 KB 9.2 KB
lzma-c.js compression 17.9 KB 7.3 KB
lzma-d.js decompression 6.8 KB 3.0 KB

Also, older versions returned compressed data as unsigned bytes. Now, it returns signed bytes.

Demos

Live demos can be found here.

How to Get

LZMA-JS is available in the npm repository.

npm install lzma

If you are using bower, you can download the source like this:

bower install lzma

How to Use

First, load the bootstrapping code.

<!-- In a browser -->
<script src="../src/lzma.js"></script>

Create the LZMA object.

/// LZMA([optional path])
/// If lzma_worker.js is in the same directory, you don't need to set the path.
var my_lzma = new LZMA("../src/lzma_worker.js");

(De)Compress stuff asynchronously:

/// To compress:
///NOTE: mode can be 1-9 (1 is fast and pretty good; 9 is slower and probably much better).
///NOTE: compress() can take a string or an array of bytes.
///      (A Node.js Buffer or a Uint8Array instance counts as an array of bytes.)
my_lzma.compress(string || byte_array, mode, on_finish(result, error) {}, on_progress(percent) {});

/// To decompress:
///NOTE: By default, the result will be returned as a string if it decodes as valid UTF-8 text;
///      otherwise, it will return a Uint8Array instance.
my_lzma.decompress(byte_array, on_finish(result, error) {}, on_progress(percent) {});

(De)Compress stuff synchronously (not recommended; may cause the client to freeze):

/// To compress:
///NOTE: You'll need to do your own error catching.
result = my_lzma.compress(string || byte_array, mode);

/// To decompress:
result = my_lzma.decompress(byte_array);

Node.js

After installing with npm, it can be loaded with the following code:

var my_lzma = require("lzma");

Notes

The decompress() function needs an array of bytes or a Node.js Buffer object.

If the decompression progress is unable to be calculated, the on_progress() function will be triggered once with the value -1.

LZMA-JS will try to use Web Workers if they are available. If the environment does not support Web Workers, it will just do something else, and it won't pollute the global scope. Each call to LZMA() will create a new Web Worker, which can be accessed via my_lzma.worker().

LZMA-JS was originally based on gwt-lzma, which is a port of the LZMA SDK from Java into JavaScript.

But I don't want to use Web Workers

If you'd prefer not to bother with Web Workers, you can just include lzma_worker.js directly. For example:

<script src="../src/lzma_worker.js"></script>

That will create a global LZMA object that you can use directly. Like this:

LZMA.compress(string || byte_array, mode, on_finish(result, error) {}, on_progress(percent) {});

LZMA.decompress(byte_array, on_finish(result, error) {}, on_progress(percent) {});

Note that this LZMA variable is an Object, not a Function.

In Node.js, the Web Worker code is already skipped, so there's no need to do this.

And if you only need to compress or decompress and you're looking to save some bytes, instead of loading lzma_worker.js, you can simply load lzma-c.js (for compression) or lzma-d.js (for decompression).

Of course, you'll want to load the minified versions if you're sending data over the wire.

Compatibility

LZMA-JS is compatible with anything that is compatible with the reference implementation of LZMA, for example, the lzma command.

License

MIT

lzma-js's People

Contributors

addaleax avatar andot avatar gabonator avatar hzuhyb avatar javisantana avatar nmrugg avatar zheung avatar zzzhan avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.