MongoDB connection strings, based on the WhatWG URL API
import ConnectionString from 'mongodb-connection-string-url';
const cs = new ConnectionString('mongodb://localhost');
cs.searchParams.set('readPreference', 'secondary');
console.log(cs.href); // 'mongodb://localhost/?readPreference=secondary'
- URL parameters are case-insensitive
- The
.host
,.hostname
and.port
properties cannot be set, and reading them does not return meaningful results (and are typed asnever
in TypeScript) - The
.hosts
property contains a list of all hosts in the connection string - The
.href
property cannot be set, only read - There is an additional
.isSRV
property, set totrue
formongodb+srv://
- There is an additional
.clone()
utility method on the prototype
Apache-2.0