npm i mongodb 몽고디비설치 const { MongoClient, ServerApiVersion } = require("mongodb"); const uri = "mongodb+srv://admin:qwer1234@admin.eepuvsg.mongodb.net/?retryWrites=true&w=majority"; // Create a MongoClient with a MongoClientOptions object to set the Stable API version const client = new MongoClient(uri, { serverApi: { version: ServerApiVersion.v1, strict: true, deprecationErrors: true, }, }); as..