Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/billiegoose/deflate-cli
A CLI utility for deflating streams with the `deflate` algorithm
https://github.com/billiegoose/deflate-cli
Last synced: 24 days ago
JSON representation
A CLI utility for deflating streams with the `deflate` algorithm
- Host: GitHub
- URL: https://github.com/billiegoose/deflate-cli
- Owner: billiegoose
- License: mit
- Created: 2020-09-27T04:17:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-09-27T04:21:16.000Z (over 4 years ago)
- Last Synced: 2024-10-06T03:22:46.089Z (3 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deflate-cli
A CLI utility for compressing streams with `deflate` algorithm## Install
```sh
npm i -g deflate-cli
```(Note: the bin is named `deflate` not `deflate-cli`.)
## Use
You can either pipe the file (preferred) or specify the file name as a command line argument.
```sh
cat somefile | deflate
```or
```sh
deflate somefile
```