Simple Chat Room in NodeJS, expressJS and mongoDB in Docker Swarm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

30 lines
615 B

'use strict';
const Server = require('mongodb-topology-manager').Server;
const co = require('co');
const mongodb = require('mongodb');
co(function*() {
// Create new instance
var server = new Server('mongod', {
auth: null,
dbpath: '/data/db/27017'
});
// Purge the directory
yield server.purge();
// Start process
yield server.start();
const db = yield mongodb.MongoClient.connect('mongodb://localhost:27017/admin');
yield db.addUser('passwordIsTaco', 'taco', {
roles: ['dbOwner']
});
console.log('done');
}).catch(error => {
console.error(error);
process.exit(-1);
});