Sometimes, we want to fix the "cannot find module ‘mongodb’" error with Node.js.
In this article, we’ll look at how to fix the "cannot find module ‘mongodb’" error with Node.js.
How to fix the "cannot find module ‘mongodb’" error with Node.js?
To fix the "cannot find module ‘mongodb’" error with Node.js, we should install the mongodb
module.
To install it globally, we run
npm install mongodb -g
We can also install it locally by running
npm install mongodb
after going into our Node.js project folder.
Conclusion
To fix the "cannot find module ‘mongodb’" error with Node.js, we should install the mongodb
module.