Skip to content

Instantly share code, notes, and snippets.

View bmorrisondev's full-sized avatar

Brian Morrison II bmorrisondev

View GitHub Profile
@bmorrisondev
bmorrisondev / migrate-mongodb-collections-mongoose.js
Last active January 16, 2019 23:02
Migrate MongoDB Collections using Mongoose.js
const fs = require('fs')
const mongoose = require('mongoose')
const ModelOne = require('./models/ModelOne')
const ModelTwo = require('./models/ModelTwo')
let source = "mongodb://source.database.com:27017/srcdb"
let destination = "mongodb://dest.database.com:27017/dstdb"
let models = [
ModelOne,