Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romainmenke/simple-gzip
Lazy man's compression
https://github.com/romainmenke/simple-gzip
css go gzip js
Last synced: about 1 month ago
JSON representation
Lazy man's compression
- Host: GitHub
- URL: https://github.com/romainmenke/simple-gzip
- Owner: romainmenke
- Created: 2017-02-19T12:17:20.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-18T21:31:55.000Z (almost 8 years ago)
- Last Synced: 2024-12-24T19:42:52.679Z (about 2 months ago)
- Topics: css, go, gzip, js
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-golang-repositories - simple-gzip
README
# Simple GZIP
A lazy man's compression
`go get github.com/romainmenke/simple-gzip`
---
I needed a tool to gzip css and js files for golang web projects.
- it loops over all files in a directory
- applies gzipI use it with `//go:generate simple-gzip` and [modd](https://github.com/cortesi/modd).
---
### Options
- `-h` : help
- `-source` : source directory
- `-out` : output directory
- `-level` : compression level
- `trailing args` : exclusion -> simple `must not contain` logic---
### Simple
- [simple-mini](https://github.com/romainmenke/simple-mini)
- [simple-bundle](https://github.com/romainmenke/simple-bundle)
- [simple-gzip](https://github.com/romainmenke/simple-gzip)
- [simple-template](https://github.com/romainmenke/simple-template)