I have found some asset-managers for node and express:
connect-assets, bundle-up, node.packer, node-static-asset
But all of them uses only one config to serve concatenated and minified assets in production. Does anyone know how to manage route-specific resources with asset managers?
Say that I want to have:
on '/route1' JS files 'one.js' and 'two.js'
on '/route2' JS files 'three.js' and 'four.js'
Right now I use my own 'asset manager' like this:
app.get('/route', function(req, res) {
res.render('route', {
title: 'Nice title',
assets: ['jquery', 'utils', 'minifier'] // file names in JS directory
});
});
But this way JS files are not minified and concatenated on production.