This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs-blog-newsletter/backend/node_modules/mongodb-connection-string-url
2024-05-26 22:54:55 +02:00
..
lib Initial commit 2024-05-26 22:54:55 +02:00
.esm-wrapper.mjs Initial commit 2024-05-26 22:54:55 +02:00
LICENSE Initial commit 2024-05-26 22:54:55 +02:00
package.json Initial commit 2024-05-26 22:54:55 +02:00
README.md Initial commit 2024-05-26 22:54:55 +02:00

mongodb-connection-string-url

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'

Deviations from the WhatWG URL package

  • 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 as neverin 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 to true for mongodb+srv://
  • There is an additional .clone() utility method on the prototype

LICENSE

Apache-2.0