Answers for "node mongodb"

4

mongodb npm

npm install -g mongodb

npm install -g mongoose
Posted by: Guest on April-14-2020
1

how to connect mongodb with node js

async function main(){
    /**
     * Connection URI. Update <username>, <password>, and <your-cluster-url> to reflect your cluster.
     * See https://docs.mongodb.com/ecosystem/drivers/node/ for more details
     */
    const uri = "mongodb+srv://<username>:<password>@<your-cluster-url>/test?retryWrites=true&w=majority";
 

    const client = new MongoClient(uri);
 
    try {
        // Connect to the MongoDB cluster
        await client.connect();
 
        // Make the appropriate DB calls
        await  listDatabases(client);
 
    } catch (e) {
        console.error(e);
    } finally {
        await client.close();
    }
}

main().catch(console.error);
Posted by: Guest on July-23-2020

Code answers related to "node mongodb"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language