fw-combo
v0.0.3
Published
Combo handler for express applications
Downloads
3
Maintainers
Readme
Installation
Install using npm:
$ npm install fw-combo
Usage
var express = require('express'),
app = express(),
statichandler = require('fw-combo');
statichandler.userCache = true;
app.get('/static', statichandler.folder('public', 'full/path/to/folder/'));
app.get('/static', statichandler.map('protected', {
'something/foo.js": "full/path/to/something/foo.js',
'bar.js": "full/path/to/something/bar.js'
}));
app.get('/static', statichandler.combine({
comboBase: '/combo~',
comboSep: '~'
}));