Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chinmayvivek/mean-practice
This repository contains the nodejs practice projects
https://github.com/chinmayvivek/mean-practice
angular-cli angular9 mean-stack meanstack mongodb mongoose node-js node-module nodejs practice-node practice-nodejs practice-programming practice-project
Last synced: 18 days ago
JSON representation
This repository contains the nodejs practice projects
- Host: GitHub
- URL: https://github.com/chinmayvivek/mean-practice
- Owner: CHINMAYVIVEK
- Created: 2019-06-09T15:08:47.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T07:50:21.000Z (over 1 year ago)
- Last Synced: 2024-04-17T19:25:14.339Z (9 months ago)
- Topics: angular-cli, angular9, mean-stack, meanstack, mongodb, mongoose, node-js, node-module, nodejs, practice-node, practice-nodejs, practice-programming, practice-project
- Language: TypeScript
- Size: 1.13 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MEAN-practice
## This repository contains the practice projects for
* MongoDB
* Express
* Angular
* Nodejs## MongoDB installation
MongoDB Installation guide for Ubuntu
## MongoDB Command
* To Start Mongo DB `sudo service mongod start`
* To Stop Mongo DB `sudo service mongod stop`
* To Restart Mongo DB `sudo service mongod restart`
* To Check Mongo DB Status `sudo service mongod status`## Working with MongoDB
* `mongo` (Get in DB Terminal)
* `show dbs` (Show all database)
* `use ChinmayDB` (switched to db ChinmayDB)
* `show collections` (Show all collections)
* `db.users.find( {} )` (Retrieve all documents in the users collection)