littledivy / deno-snappy

Google's Snappy Compression/Decompression for Deno.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

deno-snappy

stars issues deno version vr scripts

Fast Snappy Compression/Decompression for Deno.

Example

import { compress } from 'https://x.nest.land/snappy@0.0.3/mod.ts';

let text = new TextEncoder().encode("Hello, World!");
compress(text);

Join Discord

Building from source

Prerequisites

Building

$ deno run -A scripts/build.ts

Testing

Requires wasm.js to be built first.

$ deno test

Contribution

Pull request, issues and feedback are very welcome. Code style is formatted with deno fmt and commit messages are done following Conventional Commits spec.

Licence

Copyright 2020, Divy Srivastava. All rights reserved. MIT license.

About

Google's Snappy Compression/Decompression for Deno.

License:MIT License


Languages

Language:TypeScript 88.7%Language:Rust 11.3%