@alexbevi just to check, does the Mongo Driver require some special variant of TLS? You should be able to enable regular TLS via the socket API like so:
const socket = connect("atlas.mongodb.com:27017", {
secureTransport: "on"
});
I know that URL/Port combo probably isn’t right, but you get the gist.
Documentation
1 Like