memory api 源码
内存API 安装 创建本地数据库 brew services start mongodb-community mongo use memorymotel 设置项目 cp .env.example .env yarn install 运行应用 # development yarn run start # watch mode yarn run start:dev # production mode yarn run start:prod MongoDB命令 转储本地数据库 mongodump --host localhost:27017 -d {dbname} --out ./dump 使用uri转储数据库图集 mongodump --uri=mongodb+srv://{user}:{password}@{url}.mongodb.net/{dbname} --out ./dump-pro
用户评论