I\'m using npm to manage the jQuery, Bootstrap, Font Awesome and similar client libraries I need for my ASP.NET Core application.
The approach that worked for me sta
npm for managing client-side libraries is a good choice (as opposed to Bower or NuGet), you're thinking in the right direction :)FileServer, having StaticFiles should suffice for serving static files (.js, images, etc.)wwwroot to public, otherwise the folder structure in Azure Web Apps will be confusing (D:\Home\site\wwwroot\wwwroot vs D:\Home\site\wwwroot\public)node_modules to a web hosting server). See tools/deploy.js as an example.Visit ASP.NET Core Starter Kit on GitHub (disclaimer: I'm the author)