const node_modules_path = '../node_modules/'
// crypto-js - npm https://www.npmjs.com/package/crypto-js
const CryptoJS = require(node_modules_path + 'crypto-js')
// Encrypt
const ciphertext = CryptoJS.AES.encrypt('my message', 'secret key 123')
// Decrypt
const bytes = CryptoJS.AES.decrypt(ciphertext.toString(), 'secret key 123')
const plaintext = bytes.toString(CryptoJS.enc.Utf8)
console.log(plaintext)
const mongoCfg = {
uri: 'mongodb://hbaseU:123@192.168.3.103:27017/hbase',
dbName: 'hbase'
}
const MongoClient = require(node_modules_path + 'mongodb').MongoClient
const assert = require(node_modules_path + 'assert')
// Use connect method to connect to the server
MongoClient.connect(mongoCfg.uri, function (err, client) {
assert.equal(null, err)
console.log('Connected successfully to server')
const db = client.db(mongoCfg.dbName)
insertDocuments(db, function () {
console.log('cb..')
})
client.close()
})
const insertDocuments = function (db, callback) {
// Get the documents collection
const collection = db.collection('documents')
// Insert some documents
collection.insertMany([
{a: 1}, {a: 2}, {a: 3}
], function (err, result) {
assert.equal(err, null);
assert.equal(3, result.result.n);
assert.equal(3, result.ops.length);
console.log("Inserted 3 documents into the collection");
callback(result);
})
}
The official MongoDB driver for Node.js. Provides a high-level API on top of mongodb-corethat is meant for end users.node
NOTE: v3.x was recently released with breaking API changes. You can find a list of changeshere.git
what | where |
---|---|
documentation | http://mongodb.github.io/node-mongodb-native |
api-doc | http://mongodb.github.io/node-mongodb-native/3.1/api |
source | https://github.com/mongodb/node-mongodb-native |
mongodb | http://www.mongodb.org |
Think you’ve found a bug? Want to see a new feature in node-mongodb-native
? Please open a case in our issue management tool, JIRA:github
Bug reports in JIRA for all driver projects (i.e. NODE, PYTHON, CSHARP, JAVA) and the Core Server (i.e. SERVER) project are public.mongodb
Change history can be found in HISTORY.md
.shell
The recommended way to get started using the Node.js 3.0 driver is by using the npm
(Node Package Manager) to install the dependency in your project.npm
Given that you have created your own project using npm init
we install the MongoDB driver and its dependencies by executing the following npm
command.json
This will download the MongoDB driver and add a dependency entry in yourpackage.json
file.windows
You can also use the Yarn package manager.api
The MongoDB driver depends on several other packages. These are:markdown
The kerberos
package is a C++ extension that requires a build environment to be installed on your system. You must be able to build Node.js itself in order to compile and install thekerberos
module. Furthermore, the kerberos
module requires the MIT Kerberos package to correctly compile on UNIX operating systems. Consult your UNIX operation system package manager for what libraries to install.
Windows already contains the SSPI API used for Kerberos authentication. However, you will need to install a full compiler tool chain using Visual Studio C++ to correctly install the Kerberos extension.
If you don’t have the build-essentials, this module won’t build. In the case of Linux, you will need gcc, g++, Node.js with all the headers and Python. The easiest way to figure out what’s missing is by trying to build the Kerberos project. You can do this by performing the following steps.
If all the steps complete, you have the right toolchain installed. If you get the error "node-gyp not found," you need to install node-gyp
globally:
If it correctly compiles and runs the tests you are golden. We can now try to install themongod
driver by performing the following command.
If it still fails the next step is to examine the npm log. Rerun the command but in this case in verbose mode.
This will print out all the steps npm is performing while trying to install the module.
A compiler tool chain known to work for compiling kerberos
on Windows is the following.
Open the Visual Studio command prompt. Ensure node.exe
is in your path and installnode-gyp
.
Next, you will have to build the project manually to test it. Clone the repo, install dependencies and rebuild:
This should rebuild the driver successfully if you have everything set up correctly.
Your Python installation might be hosed making gyp break. Test your deployment environment first by trying to build Node.js itself on the server in question, as this should unearth any issues with broken packages (and there are a lot of broken packages out there).
Another tip is to ensure your user has write permission to wherever the Node.js modules are being installed.
This guide will show you how to set up a simple application using Node.js and MongoDB. Its scope is only how to set up the driver and perform the simple CRUD operations. For more in-depth coverage, see the tutorials.
package.json
fileFirst, create a directory where your application will live.
Enter the following command and answer the questions to create the initial structure for your new project:
Next, install the driver dependency.
You should see NPM download a lot of files. Once it's done you'll find all the downloaded packages under the node_modules directory.
For complete MongoDB installation instructions, see the manual.
mongod
process.You should see the mongod process start up and print some status information.
Create a new app.js file and add the following code to try out some basic CRUD operations using the MongoDB driver.
Add code to connect to the server and the database myproject:
Run your app from the command line with:
The application should print Connected successfully to server to the console.
Add to app.js the following function which uses the insertMany method to add three documents to the documents collection.
The insert command returns an object with the following fields:
Add the following code to call the insertDocuments function:
Run the updated app.js file:
The operation returns the following output:
Add a query that returns all the documents.
This query returns all the documents in the documents collection. Add the findDocumentmethod to the MongoClient.connect callback:
Add a query filter to find only documents which meet the query criteria.
Only the documents which match 'a' : 3
should be returned.
The following operation updates a document in the documents collection.
The method updates the first document where the field a is equal to 2 by adding a new fieldb to the document set to 1. Next, update the callback function from MongoClient.connect to include the update method.
Remove the document where the field a is equal to 3.
Add the new method to the MongoClient.connect callback function.
Indexes can improve your application's performance. The following function creates an index on the a field in the documents collection.
Add the indexCollection
method to your app:
For more detailed information, see the tutorials.