gzip/README.md

32 lines
581 B
Markdown
Raw Normal View History

## @bytedo/gzip
2023-04-13 00:31:12 +08:00
> 浏览器端的gzip库, fork于[pako](https://github.com/nodeca/pako), 仅调整语法为esm, 并只保留gzip的导出。
### 安装&使用
```bash
npm install @bytedo/gzip
```
或直接使用cdn地址:
```js
import { gzip , ungzip } from '@bytedo/gzip' // use importmap
// or
import { gzip , ungzip } from '//jscdn.ink/@bytedo/gzip/latest/index.js'
let res = gzip('hello world') // return Uint8Array object
let txt = ungzip(res) // hello world
```
### 开源协议
- MIT - 除 `/lib/zlib` 目录以外的所有文件
- ZLIB - `/lib/zlib` 目录