0.1.1 • Published 5 years ago

koa-http-concat v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

koa http concat

A koa middleware for concatenating files in a given context: CSS and JS files usually.

Reference http-cancat

NPM version

Install

npm i koa-http-concat -S

Usage

Server Side

const path = require('path');
const Koa = require('koa');
const koaHttpConcat = require('koa-http-concat');

const app = new Koa();

app.use(koaHttpConcat({
	base: path.join(__dirname, 'public'),
	path: '/'
}));

app.listen(3000);

Client Side

http://example.com/??script1.js,script2.js,build/script.js
http://example.com/??script1.js,script2.js,build/script.js?v=2016
http://example.com/??style1.css,style2.css,build/style.css
http://example.com/??style1.css,style2.css,build/style.css?v=2016