https://github.com/tanisha03/mongodb-crud
A basic app which allows basic CRUD operations using MongoDB and Nodejs
https://github.com/tanisha03/mongodb-crud
Last synced: about 2 months ago
JSON representation
A basic app which allows basic CRUD operations using MongoDB and Nodejs
- Host: GitHub
- URL: https://github.com/tanisha03/mongodb-crud
- Owner: tanisha03
- Created: 2019-08-19T18:51:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T02:46:43.000Z (over 2 years ago)
- Last Synced: 2025-02-13T04:31:15.687Z (3 months ago)
- Language: HTML
- Homepage:
- Size: 35.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mongodb-crud
A basic app which allows basic CRUD operations using MongoDB and NodejsIt performs the functionality of a basic app which allows to create, delete, edit and read todos. It has a fairly simple application
designed using basic HTML, CSS and Bootstrap. It uses Node.js and express in the backend and the MongoDB as the database.## Installation
Use the basic git command to clone the repository in the favourable location~~~
git clone https://github.com/tanisha03/mongodb-crud.git
~~~After the installation is complete, run the following command to ensure all the depencies have been installed in the node_modules
folder
~~~
npm install
~~~## Usage
Start the mongoDB server using the command
```
sudo service mongod start
```Start the node server using the command
```
node app
```The app finally starts to run on [localhost](http://localhost:3000/)