Home » Node.js MongoDB Create Collection

Node.js MongoDB Create Collection

by Online Tutorials Library

Node.js MongoDB Create Collection

MongoDB is a NoSQL database so data is stored in collection instead of table. createCollection method is used to create a collection in MongoDB.

Example

Create a collection named “employees”.

Create a js file named “employees.js”, having the following data:

Open the command terminal and run the following command:

Node.js Create collection 1

Now the collection is created.

You may also like