Managing a large Angular application can be challenging. I currently use npm install to install all packages and manually load them in my index.html
file, like this:
<script src="node_modules/angular/angular.js"></script>
Similarly, I load other files such as controllers and services, for example:
<script type="text/javascript" src="app/app.module.js"></script>
I'm looking for the best way to automate the loading of all necessary files without having to import each one individually since there are many js files in my project. Are there any helpful tutorials or solutions available that offer an easier and more streamlined approach?