https://github.com/indraarianggi/nodejs-react-upload-image
Upload image app using React, Node.js and Multer
https://github.com/indraarianggi/nodejs-react-upload-image
Last synced: about 2 months ago
JSON representation
Upload image app using React, Node.js and Multer
- Host: GitHub
- URL: https://github.com/indraarianggi/nodejs-react-upload-image
- Owner: indraarianggi
- Created: 2020-01-28T11:44:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T05:54:41.000Z (over 2 years ago)
- Last Synced: 2024-04-18T14:10:04.321Z (about 1 year ago)
- Language: JavaScript
- Size: 5.7 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Appload image app using React, Node.js and Multer
## Getting Started
1. Clone this repository
```bash
git clone https://github.com/indraarianggi/nodejs-react-upload-image.gitcd nodejs-react-upload-image
```2. Set `mongoUrl` value in `/server/config.js` file
3. Install the npm packages and run frontend (client) app locally
```bash
cd clientnpm install
npm run start
```4. Install the npm packages and run backend (server) app locally
```bash
cd servernpm install
npm run start
```Also install `nodemon` globally, if you don't have it yet.
```bash
npm install -g nodemon```
## Resources
1. [Image Uploading: Using React and Node to Get The Images Up](https://codeburst.io/image-uploading-using-react-and-node-to-get-the-images-up-c46ec11a7129)
2. [Multer](https://www.npmjs.com/package/multer)