登顶GitHub热榜的开源AI神器DocsGPT团队选择 MongoDB Atlas作为托管数据库
在这个例子中,DocsGPT团队选择了MongoDB Atlas作为数据库托管解决方案。以下是如何在Node.js中使用MongoDB Atlas的基本步骤:
- 安装MongoDB驱动:
npm install mongodb
- 使用MongoDB客户端连接到Atlas集群:
const { MongoClient } = require('mongodb');
const url = '你的MongoDB Atlas连接URL';
const client = new MongoClient(url);
async function run() {
try {
await client.connect();
const database = client.db('你的数据库名');
const collection = database.collection('你的集合名');
// 进行数据库操作,例如插入文档
const doc = { name: 'DocsGPT', createdBy: 'GitHub' };
const result = await collection.insertOne(doc);
console.log(`New document _id: ${result.insertedId}`);
} finally {
// 确保在结束时关闭连接
await client.close();
}
}
run().catch(console.dir);
在这段代码中,首先导入MongoClient
类,然后使用提供的连接URL创建一个客户端实例。接下来,定义一个异步函数run
来连接数据库,执行数据库操作,比如插入文档,并在结束时关闭连接。这是在Node.js环境中使用MongoDB Atlas的基本示例。
评论已关闭