Brief introduction
Mean is a full stack development framework for JavaScript. More about
The storage of persistent data with MongoDB is a part of mean web full stack development.
MongoDB is a product between a relational database and a non-relational database, and is the most versatile and most like relational database in a non-relational database. It is characterized by high performance, easy to deploy, easy to use, and easy to store data.
MongoDB's learning materials can be consulted:
MongoDB Chinese Community
The previous section describes how MongoDB is installed under Windows, which describes the use of its NoSQL Manager for MongoDB.
Installation and connection
This is a powerful charging software (free trial for 30 days, but can be obtained through other paths on the network, I will not say here)
Click to view
1. After downloading, start, configure the Local Database information: (after this, because it is a local database, the connection information is very simple, then add the remote connection)
2. After the connection is complete, right-click: localhost:27017 to create a database named articles.
3. Right click on the articles database and click Shell to enter the console:
4. Enter the following code, and then click Run in the upper left corner.
Db.articles.insert ({"title":"01MongoDB tutorial "})
5. Double-click the article database and click on the data entry to view the information inserted:
Double-clicking a field makes it easy to edit in the UI without having to write code updates. Using MongoDB code with the UI can speed database development efficiency.
Next: MongoDB basic syntax and NoSQL Manager for MongoDB remote connection
"Database" Mean Web development 03-MONGODB Client management tools use of NoSQL Manager for MongoDB