https://github.com/rubendvb/crud-news
https://github.com/rubendvb/crud-news
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rubendvb/crud-news
- Owner: Rubendvb
- Created: 2021-05-07T22:14:18.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-11T04:31:57.000Z (almost 3 years ago)
- Last Synced: 2025-01-21T02:09:52.105Z (3 months ago)
- Language: TypeScript
- Size: 2.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD-news
CRUD-news is an interface that shows news already created by the user that can be edited or deleted.

## Tech
CRUD-news uses a number of open source projects to work properly:
- [ReactJS](https://pt-br.reactjs.org/) - HTML enhanced for web apps!
- [Bootstrap](https://getbootstrap.com/) - great UI boilerplate for modern web apps
- [Bootwach](https://bootswatch.com/) - Used for the theme of this project
- [node.js](http://nodejs.org) - evented I/O for the backend
- [Express](https://expressjs.com/pt-br/) - fast node.js network app framework
- [MongoDB](https://www.mongodb.com/) database used for this project. Use the database of your choice.## Installation and project use
CRUD-news requires [Node.js](https://nodejs.org/) v10+ to run.
Install the dependencies and devDependencies and start the server.
To start the database...
```sh
cd api
npm i
npm run dev
```In another console start the project...
```sh
cd frontend
npm i ou yarn install
yarn start
```