Book Image

JavaScript JSON Cookbook

By : Ray Rischpater, Brian Ritchie, Ray Rischpater
Book Image

JavaScript JSON Cookbook

By: Ray Rischpater, Brian Ritchie, Ray Rischpater

Overview of this book

Table of Contents (17 chapters)
JavaScript JSON Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Installing the MongoDB database driver for Node.js


You'll need to install database drivers for Node.js, so that Node.js can talk directly to the MongoDB server.

How to do it…

To get the database drivers, simply go to the project directory where you've got your Node.js files and run the following command:

npm install mongodb

This command will download the database drivers and install them for Node.js.