Skip to content

Instantly share code, notes, and snippets.

View betteryourweb's full-sized avatar

Derek Williams betteryourweb

View GitHub Profile
@betteryourweb
betteryourweb / mongo-create-user.js
Created October 10, 2018 17:46 — forked from foull/mongo-create-user.js
NodeJS - MongoDB - creating new user with admin privileges
var MongoClient = require('mongodb').MongoClient
//
// config
//
var mongoPort = '27017'
var mongoHost = 'localhost'
var dbName = 'dbName'