Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 719 Bytes

README.md

File metadata and controls

9 lines (8 loc) · 719 Bytes

Running Nodejs Services in ASP.NET Core

Introduction

ASP.NET Core continues to surprise developers in each release. Adding the ability to run Node Services is a great feature for developer who is already using node javascript. Here are some of the major benefits for having Node services in ASP.NET Core:

  • Reuse your favorite node modules or libraries from server-side
  • Server-side prerendering can speed up the page load time
  • Support Webpack Dev Middleware
  • Hot Module Replacement

Here is a real world scenario, if you have some javascript script code that produce HTML using a third party library/framework, you can invoke nodeServices in ASP.NET Core to get the same output and return it back to the UI.