https://github.com/luisvalgoi/react-omnistack-8
Tindev App using NodeJS & React developed @ 8th OmniStack
https://github.com/luisvalgoi/react-omnistack-8
javascript mongodb react react-native reactjs
Last synced: 3 months ago
JSON representation
Tindev App using NodeJS & React developed @ 8th OmniStack
- Host: GitHub
- URL: https://github.com/luisvalgoi/react-omnistack-8
- Owner: LuisValgoi
- Created: 2019-10-29T03:08:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T23:43:41.000Z (over 3 years ago)
- Last Synced: 2025-06-20T16:52:26.027Z (about 1 year ago)
- Topics: javascript, mongodb, react, react-native, reactjs
- Language: JavaScript
- Homepage:
- Size: 1.36 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Origin
Project created during the OmnistackCourse from RocketSeat.
https://rocketseat.com.br/week-8/aulas
# Backend
### Dependencies
- `yarn init -y`: Initialized the project.
- `yarn add express`: Added the express as dependency.
- `yarn add nodemon`: Development dependency used to increase the developer tasks.
- `yarn add mongoose`: Library which helps us to manipulate data and database created using MongoDB.
- `yarn add axios`: Used to manage HTTP requests and turn my life eaiser.
- `yarn add cors:` Library which exposes app in reactjs being accessible by the frontend.
- `MongoDB Compass`: Like DBeaver but for MongoDB. SGBD.
# Frontend
**Declarative mode is: ON!!**
Declarative:
- Say to machine which are the states.
- > It will show when this case is true and this other is false
Imperative:
- Give details about everything that it needs to produce a result.
- > Search for a div and put into
### Dependencies
- `yarn add react-router-dom`: Used to manage routes and URLs inside browser.
- `yarn add axios`: Used to manage HTTP requests and turn my life eaiser.