1
Guys, I wonder if you know any tool capable of minifying files on js
and css
in bulk, are several files in a main folder spread in hundreds of subfolders, I am using Node.js
where I have several modules in these subfolders, and would like to minify the possible files in order to improve the final processing of the app.
Do you want to minify files for Node.JS? I’m not sure that makes sense. Minification is done to reduce files in order to reduce the size of HTTP messages on a website. With Node these files are not loaded via HTTP.
– Woss
So, I do want to minificar for Node.JS and yes, it would help me, Node takes a while to unzip the package, in this package is the system as for example images, js and css, currently my modules folder is with 40 megas this because it has several javascript files, i managing to minify and taking the comments in js, I will be able to reduce the processing time to start my app, currently it takes about 20 seconds to start, reducing the size of the files consequently improve the performance.
– Patrique