To connect to a MongoDB database from a NodeJS application, the documentation says to connect an address like this one:
mongodb://localhost:27017/myproject
where mongodb
is the protocol, in place of http
(or https
).
I'm curious how this works though.
When I open my browser, I cannot navigate to this page, and I cannot send requests to it through Postman.
How does this protocol work? How do I manually interact with it? Where can I find more information about it?