Can I install an Angular content library without Bower or NPM?

I want to install the Angular material library in the project, but I'm behind a corporate firewall, and even setting up a proxy server does not work, it seems that the proxy blocks certain types of files. Is there any way to install this offline?

FYI is my BundleConfig

bundles.Add(new StyleBundle("~/Content/css").Include( "~/Content/bootstrap.css", "~/Content/font-awesome.min.css", "~/Scripts/angular-loading/loading-bar.css", "~/Scripts/nya-bs-select/nya-bs-select.min.css", "~/Content/angular-ui-switch.css", "~/Content/site.css")); bundles.Add(new ScriptBundle("~/bundles/angular") .Include("~/Scripts/angular.js", "~/Scripts/angular-route.js", "~/Scripts/angular-ui/ui-bootstrap-tpls.js", "~/Scripts/AngularApp/app.js") .IncludeDirectory("~/app", "*.js", true) .Include("~/Scripts/smart-table/smart-table.js", "~/Scripts/angular-loading/loading-bar.js", "~/Scripts/nya-bs-select/nya-bs-select.min.js", "~/Scripts/moment.js")); 
+8
javascript angularjs npm bower
source share
3 answers

You can use the CDN link in your link, as described in the docs , or download the source from the CDN.

excerpt from documents:

 <head> <!-- Angular Material CSS using GitCDN to load directly from `bower-material/master` --> <link rel="stylesheet" href="https://gitcdn.xyz/repo/angular/bower-material/master/angular-material.css"> </head> <body> <!-- Angular Material Dependencies --> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-animate.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-aria.js"></script> <!-- Angular Material Javascript using GitCDN to load directly from `bower-material/master` --> <script src="https://gitcdn.xyz/repo/angular/bower-material/master/angular-material.js"></script> </body> 

Or take the Source

+2
source share

download here except your computer and include it in your project?

0
source share

This is really confusing; I donโ€™t know why they canโ€™t put the freakin zip archive on GitHub, like everyone else, which contains all the dependencies. (They include a zip file, but without common mini files.)

Having studied the source code of Angular Material site , perhaps you can use the following links to get the latest files

0
source share

All Articles