I have a lot of JQuery plugins. I want Node.js to join them automatically, and then minify them.

Is there a way to do this in Node.js

link|improve this question

feedback

6 Answers

up vote 4 down vote accepted

If you're using Connect, then I've had good luck with Connect-Assetmanager

link|improve this answer
feedback

UglifyJS is a Node module that is all about minifying javascript. I don't think it also joins files, but there might be an option I missed.

link|improve this answer
also the minification part is the difficult part. Joining those files can be coded in a couple of lines... – Alfred Jun 30 '11 at 20:40
feedback

Maybe not exactly what you're looking for but Enderjs could work.

link|improve this answer
feedback

If you like the Rails 3.1 asset pipeline approach, you should try my connect-assets library.

link|improve this answer
feedback

I'd definitely suggest the Closure Compiler's simple mode.

link|improve this answer
feedback

Here's a asset manager that takes features of Node.js seriously.

https://github.com/epeli/node-pile

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.