Node.js requires a Hosting Business offer.
You can activate Node.js in your web.config by adding the handler "iisnode".
If the web.config file does not exist, you need to create it.
Example of a newly created configuration file:
<?xml version="1.0" encoding="UTF-8"?><br> <configuration><br> <system.webServer><br> <handlers><br> <add name="iisnode" path="HelloWorld.js" verb="*" modules="iisnode" /><br> </handlers> <br> </system.webServer><br> </configuration>
Hint:
Visualstudio creates the necessary web.config automatically.