https://github.com/hupptechnologies/resumable-upload-node-react
Resumable upload for large-size files with NodeJS & ReactJs
https://github.com/hupptechnologies/resumable-upload-node-react
axios axios-rest busboy busboy-upload expressjs nodejs reactjs resumable-upload
Last synced: 3 months ago
JSON representation
Resumable upload for large-size files with NodeJS & ReactJs
- Host: GitHub
- URL: https://github.com/hupptechnologies/resumable-upload-node-react
- Owner: hupptechnologies
- Created: 2021-09-17T10:51:00.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-20T13:14:34.000Z (over 3 years ago)
- Last Synced: 2025-01-08T03:55:07.399Z (5 months ago)
- Topics: axios, axios-rest, busboy, busboy-upload, expressjs, nodejs, reactjs, resumable-upload
- Language: JavaScript
- Homepage:
- Size: 10.1 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Resumable Upload Node + React.
Resumable upload will help to upload a large size of file. With the default upload behaviour when we upload a file and while uploading because of reason uploading failed that time we need to start uploading again with new process & it’s upload entire file again.
Using Resumable upload we can start upload at the point where it's break. We don't need to start uploading process from the start.
##### Used Framework & Packages.
- Frontend - ( ReactJS )
- axios
- Backend - ( NodeJs )
- ExpressJS
- busboy##### Frontend setup
1. Go to frontend directory.
2. Run: npm install
3. Run: npm start: ( http://localhost:3000 )##### Backend setup
1. Go to backend directory.
2. Run: npm install
3. Run: npm start: ( http://localhost:5000 )