Consider the below
<html ng-app="crudModule">
@{
ViewBag.Title = "Index";
}
<body ng-controller="crudController">
<table id="tblContainer" border="1">
<thead>
<tr>
<th>EmpName</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="emp in Employees" my-employee="emp"></tr>
</tbody>
</table>
<script type="text/ng-template" id="Employee.html">
<tr>
<td> <span>{{_employee.EmployeeId}}</span></td>
</tr>
</script>
</body>
</html>
<script src="~/Scripts/angular.js"></script>
<script src="~/Scripts/angular-route.js"></script>
<script src="~/Scripts/MyScripts/Module.js"></script>
<script src="~/Scripts/MyScripts/Service.js"></script>
<script src="~/Scripts/MyScripts/Controller.js"></script>
<script src="~/Scripts/MyScripts/Builder.js"></script>
<script src="~/Scripts/MyScripts/Utility.js"></script>
A lot of external javascript files in the same page.
Is there any nice way to do it so that the page will have only one JS file and the others will be inside that or any other way?.