https://github.com/coderaiser/koa-minify
Minify middleware for koa
https://github.com/coderaiser/koa-minify
Last synced: 5 months 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-07-12T13:29:44.000Z (almost 8 years ago)
- Last Synced: 2024-10-23T13:19:27.295Z (6 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最小化的中间件。  (仓库 / 中间件)
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