Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/neroist/brotli
- Owner: neroist
- Created: 2024-07-21T18:55:44.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-26T16:43:27.000Z (6 months ago)
- Last Synced: 2024-10-25T05:54:15.297Z (3 months ago)
- Topics: bindings, brotli, compression, decompression, google, nim, wrapper
- Language: Nim
- Homepage: https://neroist.github.io/brotli/
- Size: 739 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.