Skip to content

Instantly share code, notes, and snippets.

@Itax67
Itax67 / mongo-connection-url.js
Created February 23, 2024 18:52 — forked from imaustink/mongo-connection-url.js
Simple Mongo DB connection URL generator in JavaScript
function mongoURL(options) {
options = options || {};
var URL = 'mongodb://';
if (options.password && options.username) URL += options.username + ':' + options.password + '@';
URL += (options.host || 'localhost') + ':';
URL += (options.port || '27017') + '/';
URL += (options.database || 'admin');
return URL;
}