Tell us what’s happening:
I’ve done multiple changes: moved from replit.com to glitch then corrected typos created new database in MongoDB Atlas new password. Visited glitch forum found someone with same unresolved problem. Any suggestions are greatly appreciated.
I was able to get it working on my with the versions from the instructions.
You wrote this in your package.json file
"mongoose": "~5.4.0",
"mongodb": "~3.6.0"
but when I installed mine my package.json file looked like this
"mongodb": "^3.6.0",
"mongoose": "^5.4.0"
These were the commands I ran.
npm i mongoose@5.4.0
npm i mongodb@3.6.0
See if that helps
If that doesn’t help, then it looks like there is an issue with your mongo uri string.
Does your password in the string have any special characters in it?
There have been people on the forum that had issues with their mongo uri strings and had to change it to a password without special characters so it could pass the test.