When connecting to a cluster of 3 servers with the Node SDK, all of the examples just use localhost. If you are connecting to a production cluster, do you provide all of the hosts in the connection string? It seems like you would want to do that.
const cluster = new couchbase.Cluster("couchbase://localhost", {
username: "Administrator",
password: "password",
});
vs
const cluster = new couchbase.Cluster("server1,server2,server3", {
username: "Administrator",
password: "password",
});