1.1.9 • Published 2 years ago

node-liblzma v1.1.9

Weekly downloads
12
License
LGPL-3.0
Repository
github
Last release
2 years ago

Node-liblzma

NPM Version NPM Downloads Test on Linux Test on MacOS Test on Windows

What is liblzma/XZ ?

XZ is a container for compressed archives. It is among the best compressors out there according to several benchmarks:

It has a good balance between compression time/ratio and decompression time/memory.

About this project

This project aims towards providing:

  • A quick and easy way to play with XZ compression: Quick and easy as it conforms to zlib API, so that switching from zlib/deflate to xz might be as easy as a string search/replace in your code editor :smile:

  • Complete integration with XZ sources/binaries: You can either use system packages or download a specific version and compile it! See installation below.

Only LZMA2 is supported for compression output. But the library can open and read any LZMA1 or LZMA2 compressed file.

What's new ?

It has been quite some time since I first published this package. In the meantime, N-API eventually became the de facto standard to provide stable ABI API for NodeJS Native Modules.

It therefore replaces good ol' nan !

It supports all NodeJS versions >= 12 and lots has been done to change CICD pipelines and testing.

It has been tested and works on:

  • Linux x64 (Ubuntu)
  • OSX (macos-11)
  • Raspberry Pi 2/3/4 (both on 32-bit and 64-bit architectures)
  • Windows (windows-2019 and windows-2022 are part of GitHub CI)

Notes:

  • For Windows There is no "global" installation of the LZMA library on the Windows machine provisionned by GitHub, so it is pointless to build with this config
  • For Linux
  • For MacOS

Prebuilt images

Several prebuilt versions are bundled within the package.

  • Windows x86_64
  • Linux x86_64
  • MacOS x86_64 / Arm64

If your OS/architecture matches, you will use this version which has been compiled using the following default flags:

FlagDescriptionDefault valuePossible values
USE_GLOBALShould the library use the system provided DLL/.so library ?yes (no if OS is Windows)yes or no
RUNTIME_LINKShould the library be linked statically or use the shared LZMA library ?sharedstatic or shared
ENABLE_THREAD_SUPPORTDoes the LZMA library support threads ?yesyes or no

If not node-gyp will automagically start compiling stuff according to the environment variables set, or the default values above.

If you want to change compilation flags, please read on here.

Related projects

Thanks to the community, there are several choices out there:

  • lzma-purejs A pure JavaScript implementation of the algorithm
  • node-xz Node binding of XZ library
  • lzma-native A very complete implementation of XZ library bindings
  • Others are also available but they fork "xz" process in the background.

API comparison

var lzma = require('node-liblzma');
ZlibXZlibArguments
createGzipcreateXz([lzma_options, options])
createGunzipcreateUnxz([lzma_options, options])
gzipxz(buf, options, callback)
gunzipunxz(buf, options, callback)
gzipSyncxzSync(buf, options)
gunzipSyncunxzSync(buf, options)

Constants

options is an Object with the following possible attributes:

AttributeTypeAvailable options
checkUint32NONE
CRC32
CRC64
SHA256
presetUint32DEFAULT
EXTREME
flagUint32TELL_NO_CHECK
TELL_UNSUPPORTED_CHECK
TELL_ANY_CHECK
CONCATENATED
modeUint32FAST
NORMAL
filtersArrayLZMA2 (added by default)
X86
POWERPC
IA64
ARM
ARMTHUMB
SPARC

For further information about each of these flags, you will find reference at XZ SDK.

Installation

Well, as simple as this one-liner:

$ npm i node-liblzma --save

--OR--

$ yarn add node-liblzma

If you want to recompile the source, for example to disable threading support in the module, then you have to opt out with:

$ ENABLE_THREAD_SUPPORT=no npm install node-liblzma --build-from-source

Note: Enabling thread support in the library will NOT work if the LZMA library itself has been built without such support.

To build the module, you have the following options: 1. Using system development libraries 2. Ask the build system to download xz and build it 3. Compile xz yourself, outside node-liblzma, and have it use it after

Using system dev libraries to compile

You need to have the development package installed on your system. If you have Debian based distro:

# apt-get install liblzma-dev

Automatic download and compilation to statically link xz

If you do not plan on having a local install, you can ask for automatic download and build of whatever version of xz you want.

Just do:

$ npm install node-liblzma --build-from-source

When no option is given in the commandline arguments, it will build with default values.

Local install of xz sources (outside node-liblzma)

So you did install xz somewhere outside the module and want the module to use it.

For that, you need to set the include directory and library directory search paths as GCC environment variables.

$ export CPATH=$HOME/path/to/headers
$ export LIBRARY_PATH=$HOME/path/to/lib
$ export LD_LIBRARY_PATH=$HOME/path/to/lib:$LD_LIBRARY_PATH

The latest is needed for tests to be run right after.

Once done, this should suffice:

$ npm install

Tests

You can run tests with:

$ npm test

It will build and launch tests suite with Mocha.

Usage

As the API is very close to NodeJS Zlib, you will probably find a good reference there.

Otherwise examples can be found as part of the test suite, so feel free to use them! They are written in CoffeeScript.

Bugs

If you find one, feel free to contribute and post a new issue! PR are accepted as well :)

Kudos goes to addaleax for helping me out with C++ stuff !

If you compile with threads, you may see a bunch of warnings about -Wmissing-field-initializers. This is normal and does not prevent threading from being active and working. I did not yet figure how to fix this except by masking the warning..

License

This software is released under LGPL3.0+

1.1.9

2 years ago

1.1.8

2 years ago

1.1.7

2 years ago

1.1.6

2 years ago

1.1.5

2 years ago

1.1.4

2 years ago

1.0.4-12

8 years ago

1.0.4-11

8 years ago

1.0.4-10

8 years ago

1.0.4-9

8 years ago

1.0.4-8

8 years ago

1.0.4-7

8 years ago

1.0.4-6

8 years ago

1.0.4-5

8 years ago

1.0.4-4

8 years ago

1.0.4-3

8 years ago

1.0.4-2

8 years ago

1.0.4-1

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.5.0

9 years ago

0.4.5-1

9 years ago

0.4.5

9 years ago

0.4.4

9 years ago

0.4.3

9 years ago

0.4.2

9 years ago

0.4.1-rc11

9 years ago

0.4.1-rc10

9 years ago

0.4.1-rc8

9 years ago

0.4.1-rc7

9 years ago

0.4.1-rc6

9 years ago

0.4.1-rc5

9 years ago

0.4.1-rc4

9 years ago

0.4.1-rc3

9 years ago

0.4.1-rc2

9 years ago

0.4.1-rc1

9 years ago

0.4.0

9 years ago

0.3.0

10 years ago