Hello Rin,
Thanks for reaching out on Microsoft Q and A!
You won’t find AngularJS in Visual Studio’s NuGet package manager because it’s a client-side JavaScript library.Instead, you have two good options:
- Download Manually: Visit the AngularJS website, download the
angular.js
file, and add it to your project. Just include it in your HTML file, and you’re good to go. - Use npm: For a more modern approach, install Node.js if you don’t have it yet, then run
npm install angular
in your terminal. You can then link to AngularJS from yournode_modules
folder in your HTML.
If you're using Visual Studio Code, it has handy AngularJS extensions to make development easier. And if you're starting fresh, you might want to explore the latest Angular framework for more up-to-date features and active community support! I hope this makes it clearer!
If you found this helpful, please accept this answer and upvote. Thanks!