MongoDB node. JS Driver

Source: Internet
Author: User
Tags install mongodb

A simple instance of node. js Connecting to MongoDB

Install the node. JS Driver

  

NPM Install Mongodb-save

Connection

var Mongodbclient = require (' MongoDB '). mongoclient; var url = ' Mongodb://localhost:27017/microblog ';    // your DB host function (err, db) {    console.log ("Connected to correctly to Server");     // ... do your CRUD job});

Crud

A simple example of a crud: Here's a look at all the document that queries a collection

  

varDoFind =function(DB, callback) {Console.log ("Do query ..."); varcursor = db.collection (' Collection-name '). Find ();//Collection-name is whose collection you want to query.Cursor.each (function(err, doc) {if(doc!=NULL){            //... do your job}Else{callback ();//You can close MongoDB here.        }    });}

Reference: https://docs.mongodb.org/getting-started/node/

MongoDB node. JS Driver

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.