Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manyuanrong/wasm_gzip
Gzip encryption and decryption wasm implementation, support Deno
https://github.com/manyuanrong/wasm_gzip
Last synced: 16 days ago
JSON representation
Gzip encryption and decryption wasm implementation, support Deno
- Host: GitHub
- URL: https://github.com/manyuanrong/wasm_gzip
- Owner: manyuanrong
- License: mit
- Created: 2020-05-26T09:12:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-11T08:13:56.000Z (almost 4 years ago)
- Last Synced: 2024-10-04T13:29:21.398Z (about 1 month ago)
- Language: JavaScript
- Size: 81.1 KB
- Stars: 19
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-deno-cn - @manyuanrong/wasm-gzip
- awesome-deno - wasm-gzip - Perform gzip operations for Deno. (Modules / Utils)
README
# wasm_gzip
Gzip encryption and decryption wasm implementation, support Deno
[![Build Status](https://github.com/manyuanrong/deno-smtp/workflows/ci/badge.svg?branch=master)](https://github.com/manyuanrong/wasm_gzip/actions)
![GitHub](https://img.shields.io/github/license/manyuanrong/wasm_gzip.svg)
![GitHub release](https://img.shields.io/github/release/manyuanrong/wasm_gzip.svg)
![(Deno)](https://img.shields.io/badge/deno-1.0.2-green.svg)## Usage
```ts
import {
gzipDecode,
gzipEncode,
} from "https://github.com/manyuanrong/wasm_gzip/raw/master/mod.ts";const helloWorld = new TextEncoder().encode("Hello World");
const encoded = gzipEncode(helloWorld);
const decoded = gzipDecode(encoded);
```