- Server-side Libraries
Nuget is the source for all kind of server side libraries and packages. - Client-side Libraries
For client side libraries like js and css, its recommended to refer them directly from CDN, to leverage their fast loading. If want to use them locally than these can be downloaded from Node Package Manager (NPM).
You can download client side tools from NPM or command line or MS package installer.
How to use NPM (Node Package Manager)
- Add new npm Package Configuration file.
- Add whatever packages you want to add in devDependencies.
- Hundreds of useful client side packages available in NPM like Jquery and bootstrap.
- When you add libraries in NPM configuration file (package.json), visual studio automatically installs them.
- Its install in hidden node_modules folder, and in lib folder in wwwroot.
- you can than copy/keep only required minified versions of libraries in www folder.


