据我所知,MLab现在是MongoDB Atlas。 MLab不再接受新帐户。
MongoDB Atlas不允许开发人员数据库执行以下操作:
if(process.env.NODE_ENV === 'production'){
module.exports = {
mongoURI: 'mongodb://user:userpass@dsxxxx.mlab.com:xxxx/myproyect-prod'
}
} else {
module.exports = {
mongoURI: 'mongodb://localhost/myproyect-dev'
}
}
使用开发和生产数据库来学习MLab的任何替代方法吗?