I’m developing a Node.js
application which in a user signs up in three levels.
the problem is when a user encounters and error in any of the levels, the whole server reset and the rest of the user sessions get close.
the reason that server restarts is that I’m using forever start app
to start my app,otherwise it goes down completely.
how to stop the server to stops completely when just one users encounters any error?
how to start each users in an individual thread(by thread i mean an isolate environment)?