0

Hello I'm developing a web api that need to communicate with software the is installed on a windows machine. I considering to create a node server that listen to the request and then communicate with the software using the C# api (using edge.js). My main question is how I can make a node.js app work on the background and restart in case of disaster. I always used the node.js on web server and I don't know how it behaves on normal machines.

Robert
  • 187
  • 2
  • 9

1 Answers1

0

You can achieve this with the forever tool, or by installing node as a Windows service.

See which solution suits you best.

Community
  • 1
  • 1
mihai
  • 37,072
  • 9
  • 60
  • 86