Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/neroist/brotli

Nim wrapper for the Brotli compression library
https://github.com/neroist/brotli

bindings brotli compression decompression google nim wrapper

Last synced: about 2 months ago
JSON representation

Nim wrapper for the Brotli compression library

Awesome Lists containing this project

README

        

# brotli

Nim wrapper for Brotli compression library

## Usage

By default, this library will compile the C source code statically. `-d:useBrotliDll`
and `-d:useBrotliAllDll` will make the library use the `brotlienc` and `brotlidec`
libraries. Use `-d:useBrotliEncDll` or `-d:useBrotliDecDll` to use a specific DLL.

See [`tests/test1.nim`](tests/test1.nim) for some very simple usage examples.