ASP.NET MVC 4 introduced an amazing tool for combining multiple stylesheets or javascripts in one of the following ways:
bundles.Add(new StyleBundle("~/Content/themes/base/css").Include( "~/Content/themes/base/jquery.ui.core.css", "~/Content/themes/base/jquery.ui.datepicker.css", "~/Content/themes/base/jquery.ui.theme.css"));
Does NODE.JS have any modules for performing the same task - for combining client javascript libraries into one? I saw tools like browserify, uglifier, etc., but this requires manually invoking console commands (or could I have missed something?). Meanwhile, it would be nice to eliminate this excessive step and have middleware that can be easily integrated into the express.js application, for example.
koss
source share