Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)