I have a dedicated setup where nodejs is on one server and mongodb on a different server. The mongoose installation works and my app correctly handles mongo, so I do not have an issue per se.
My question is: Considering that mongoose builds a native C++ driver during npm install using the mongodb code, will I have less performance because mongoose installs differently when mongodb is unavailable?
The docs state that both HAVE to be installed.
P.S. I would like to avoid "polluting" my node server with a database service it does not need.
Thanks to eryone.