Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rminelli/crud-project
JavaScript CRUD project using React and full fake REST API with JSON Server
https://github.com/rminelli/crud-project
crud-application javascript react react-router
Last synced: 28 days ago
JSON representation
JavaScript CRUD project using React and full fake REST API with JSON Server
- Host: GitHub
- URL: https://github.com/rminelli/crud-project
- Owner: rminelli
- License: mit
- Created: 2019-10-11T12:49:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T12:20:04.000Z (about 2 years ago)
- Last Synced: 2024-11-11T02:32:43.494Z (3 months ago)
- Topics: crud-application, javascript, react, react-router
- Language: JavaScript
- Homepage:
- Size: 3.64 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Crud Project
## JavaScript CRUD project using React and full fake REST API with JSON Server[![prettier](https://img.shields.io/badge/styled%20with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
[![GitHub](https://img.shields.io/github/license/mtxr/vscode-sqltools?style=flat-square)](https://github.com/rminelli/brastlewark-search/blob/master/LICENSE)This project was created with:
- JavaScript
- React
- Json server
- Axios![](preview.gif)
## How to Use
```shell
# Clone this repository
$ git clone https://github.com/rminelli/crud-project# Go into the repository
$ cd crud-project# Backend
$ cd backend# Install dependencies
$ npm install# Run backend
$ npm start
Backend runs with json-server
Resources: http://localhost:3001/users# Frontend
$ cd frontend# Install dependencies
$ npm install# Run frontend
$ npm startRuns the app in the development mode
Open http://localhost:3000 to view it in the browser. (This usually happens automatically)# Run test
$ npm testLaunches the test runner in the interactive watch mode
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests)# Build
$ npm run buildBuilds the app for production to the `build` folder
It correctly bundles React in production mode and optimizes the build for the best performance.```
❤️