Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coderaiser/koa-minify
Minify middleware for koa
https://github.com/coderaiser/koa-minify
Last synced: 25 days ago
JSON representation
Minify middleware for koa
- Host: GitHub
- URL: https://github.com/coderaiser/koa-minify
- Owner: coderaiser
- License: mit
- Created: 2014-11-11T15:41:09.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-07-12T13:29:44.000Z (over 7 years ago)
- Last Synced: 2024-10-23T13:19:27.295Z (about 2 months ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
- awesome-koa - koa-minify - 将 js、css、html 和 img最小化的中间件。![](https://img.shields.io/github/stars/coderaiser/koa-minify.svg?style=social&label=Star) ![](https://img.shields.io/npm/dm/koa-minify.svg?style=flat-square) (仓库 / 中间件)
README
# Koa-minify
[Minify](http://coderaiser.github.io/minify "Minify") middleware for [koa](http://koajs.com/ "Koa").
## Install
`npm i koa-minify --save`
## Use
```js
const koa = require('koa');
const koaMinify = require('koa-minify');
const app = new koa();app.use(koaMinify({
dir: __dirname
}));app.listen(3000);
```## License
MIT