Skip to content

Commit 3b9857a

Browse files
committed
first commit
0 parents  commit 3b9857a

21 files changed

+25376
-0
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
PORT=8081

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

README.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# React File Upload example with Axios & Boostrap
2+
3+
For more detail, please visit:
4+
> [React File Upload with Axios & Boostrap Progress Bar](https://bezkoder.com/react-file-upload-axios/)
5+
6+
> [React (with Hooks) File Upload with Axios & Boostrap Progress Bar](https://bezkoder.com/react-hooks-file-upload/)
7+
8+
Rest APIs server for this React Client:
9+
> [Node.js Express File Upload Rest API example](https://bezkoder.com/node-js-express-file-upload/)
10+
11+
> [Spring Boot Multipart File upload example](https://bezkoder.com/spring-boot-file-upload/)
12+
13+
## Fullstack CRUD
14+
With Node.js Express:
15+
16+
> [React.js + Node.js Express + MySQL](https://bezkoder.com/react-node-express-mysql/)
17+
18+
> [React.js + Node.js Express + PostgreSQL](https://bezkoder.com/react-node-express-postgresql/)
19+
20+
> [React.js + Node.js Express + MongoDB](https://bezkoder.com/react-node-express-mongodb-mern-stack/)
21+
22+
With Spring Boot:
23+
24+
> [React.js + Spring Boot + MySQL](https://bezkoder.com/react-spring-boot-crud/)
25+
26+
> [React.js + Spring Boot + PostgreSQL](https://bezkoder.com/spring-boot-react-postgresql/)
27+
28+
> [React.js + Spring Boot + MongoDB](https://bezkoder.com/react-spring-boot-mongodb/)
29+
30+
With Django:
31+
32+
> [React.js + Django Rest Framework](https://bezkoder.com/django-react-axios-rest-framework/)
33+
34+
## Serverless
35+
> [React Firebase CRUD App with Realtime Database](https://bezkoder.com/react-firebase-crud/)
36+
37+
> [React Firestore CRUD App example | Firebase Cloud Firestore](https://bezkoder.com/react-firestore-crud/)
38+
39+
40+
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
41+
42+
### Set port
43+
.env
44+
```
45+
PORT=8081
46+
```
47+
48+
## Project setup
49+
50+
In the project directory, you can run:
51+
52+
```
53+
npm install
54+
# or
55+
yarn install
56+
```
57+
58+
or
59+
60+
### Compiles and hot-reloads for development
61+
62+
```
63+
npm start
64+
# or
65+
yarn start
66+
```
67+
68+
Open [http://localhost:8081](http://localhost:8081) to view it in the browser.
69+
70+
The page will reload if you make edits.

0 commit comments

Comments
 (0)