Node.js MongoDB Create CollectionMongoDB 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: Now the collection is created. Next TopicNode.js MongoDB Insert |