I want to split up my application in two parts:
I would now like to know if it would be a good idea to seperate them into two independent node set ups instead of using connect.vhosts.
The benefit would be that we can develope both parts independently and they also should work quite independent with the exception that the app part requires the security one.
I just have following problems about this idea:
Does somebody got already experience about using multiple node projects side-by-side?
If yes what could other possible issues can be?
Best Regards
How about the best of both words--that is, develop each application, separately, as a package that is export
ed and then put the two pieces together with connect.vhost
in a third app. So, essentially, you're writing two libraries (even though they behave like web servers and can function as web servers on their own) and tying them together in an app.