What is the best IDE/editor/anything-else that manage javascript project on multiple files? I mean, is there a way of developing projects on multiple files and then kinda “build” the project into a single minified file? I’ve seen that this is done in lots of projects on the net. Thanks!
What is the best IDE/editor/anything-else that manage javascript project on multiple files? I mean,
Share
I don’t think there is any all-in-one solution for that (yet). You need to combine several tools:
Personally, I use loads of Bash scripts, but I’ve seen people use Maven or Ant
If you’re on a small to medium-sized project, running the tools manually might be the best solution in terms of cost-benefit ratio, since automation requires quite a bit of work.