Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Managing a larger JavaScript project [closed]

I was wondering, how are bigger JavaScript projects being maintained? I've been looking into AMD systems, such as RequireJS and BackboneJS. However, I'd rather see my pack of JavaScript files being merged into one minified file using a build system or something. Looking at jQuery's Github repository, they seem to do something similar. So the question, are there build systems for JavaScript or any other approaches to merge multiple JS files to one?

like image 546
Deltanic Avatar asked Jun 25 '13 20:06

Deltanic


People also ask

Is node good for big projects?

Because of its non-blocking event loop mechanism, it enables developers to build highly scalable and cross-platform web applications easily. It is also a primary choice of startups. So, Node. js is the right choice for big projects.

Is Express js good for large projects?

Middleware frameworks, like Express. js, are suitable for small and medium projects. If you are going to develop a large project that will be supported by a large team of developers, Express. js is not the best choice.

Is node good for large applications?

It is suitable for large enterprise projects that do complex and complicated computations and data processing. The comparison in terms of development time between Node. js and Java is that, Node. js is easier to learn than Java, leading to faster development when using Node.

Why my JavaScript is not working?

On the web browser menu click on the "Edit" and select "Preferences". In the "Preferences" window select the "Security" tab. In the "Security" tab section "Web content" mark the "Enable JavaScript" checkbox. Click on the "Reload the current page" button of the web browser to refresh the page.


2 Answers

Have a look at Grunt, it does this and much more!

With RequireJS you can use the optimizer

like image 186
W3Max Avatar answered Sep 28 '22 09:09

W3Max


You might want to check this URL. A very nice discussion on Require.js featuring top JS technologists.

like image 40
Pono Avatar answered Sep 28 '22 08:09

Pono