resolve-mongodb-srv
Resolve mongodb+srv:// URLs to mongodb:// URLs
Last updated 4 years ago by gribnoysup .
Apache-2.0 · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install resolve-mongodb-srv 
SYNC missed versions from official npm registry.

resolve-mongodb-srv

Resolve mongodb+srv:// URLs to mongodb:// URLs as specified in the Initial DNS Seedlist Discovery Specification.

import resolveMongodbSrv from 'resolve-mongodb-srv';

await resolveMongodbSrv('mongodb+srv://user:password@somecluster.mongodb.net/db');
// Returns: mongodb://user:password@host1,host2,host3/db

The resolveMongodbSrv function takes an optional second argument, where the used dns implementation can be passed in:

import dns from 'dns';
import resolveMongodbSrv from 'resolve-mongodb-srv';

await resolveMongodbSrv('hostname', { dns });

LICENSE

Apache-2.0

Current Tags

  • 1.1.2                                ...           latest (4 years ago)

5 Versions

  • 1.1.2                                ...           4 years ago
  • 1.1.1                                ...           4 years ago
  • 1.1.0                                ...           5 years ago
  • 1.0.1                                ...           5 years ago
  • 1.0.0                                ...           5 years ago

Copyright 2013 - present © cnpmjs.org | Home |