ASP.NET Core middleware to serve files from the node_modules directory in the root of the project.
Install-Package OdeToCode.UseNodeModules
public class Startup
{
// ...
public void Configure(IApplicationBuilder app, IHostingEnvironment environment)
{
// ...
app.UseNodeModules(environment);
// ...
}
}