Is there a library intended for compiling/testing your Javascript libraries?
I’ve noticed many common Javascript libraries like jQuery still use gnu make. Nothing is wrong with the traditional make, but I was just curious if a solution in Javascript has been crafted.
Obviously using node.js you can easily fs.readFile and then concat the files but it is often nice to look at others source who have more experience on the topic.
I believe your looking for
Ender. It’s a package manager for client-side javascript.You define your package in your standard
package.jsonfile and then use the command lineenderAPI to construct and build your javascript package.