Mongoose | save() Function
The save() function is used to save the document to the database. Using this function, new documents can be added to the database.
Installation of mongoose module:
- You can visit the link to Install mongoose module. You can install this package by using this command.
npm install mongoose
- After installing mongoose module, you can check your mongoose version in command prompt using the command.
npm version mongoose
- After that, you can just create a folder and add a file, for example index.js. To run this file you need to run the following command.
node index.js
Filename: index.js
const mongoose = require( 'mongoose' ); // Database Connection useNewUrlParser: true , useCreateIndex: true , useUnifiedTopology: true }); // User model const User = mongoose.model( 'User' ,{ name: { type: String }, age: { type: Number } }); var new_user = new User({ name: 'Manish' , age:34 }) new_user.save( function (err,result){ if (err){ console.log(err); } else { console.log(result) } }) |
Steps to run the program:
- The project structure will look like this:
- Make sure you have installed mongoose module using following command:
npm install mongoose
- Below is the sample data in the database before the function is executed, You can use any GUI tool or terminal to see the database, like we have used Robo3T GUI tool as shown below:
- Run index.js file using below command:
node index.js
- After the function is executed, You can see in the database that the new_user is saved as shown below:
So this is how you can use the mongoose save() function which saves the document to the database. Using this function, new documents can be added to the database.
Please Login to comment...