https://github.com/navaneeth-21/file-multer-microservice
A File Metadata Microservice which is used to upload different types of files using "Multer" and returns file Information in JSON body
https://github.com/navaneeth-21/file-multer-microservice
expressjs freecodecamp-backend freecodecamp-challenge multer multer-fileupload nodejs
Last synced: 2 months ago
JSON representation
A File Metadata Microservice which is used to upload different types of files using "Multer" and returns file Information in JSON body
- Host: GitHub
- URL: https://github.com/navaneeth-21/file-multer-microservice
- Owner: Navaneeth-21
- Created: 2024-08-16T14:24:48.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-08-17T16:41:54.000Z (9 months ago)
- Last Synced: 2025-01-30T08:43:29.135Z (4 months ago)
- Topics: expressjs, freecodecamp-backend, freecodecamp-challenge, multer, multer-fileupload, nodejs
- Language: JavaScript
- Homepage: https://3000-freecodecam-boilerplate-kne82gdhk9n.ws-us115.gitpod.io/
- Size: 440 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# File Metadata Microservice
A Microservice Application which is used to upload the different types of files using a package "Multer".## Getting Started
1. Tools and Technologies :
- NodeJS
- ExpressJS
- Multer2. Clone the repository
3. Install the dependencies```sh
npm install
4. Create a directory named 'Uploads/' in your root repository to store the files that has been uploaded```sh
mkdir Uploads5. Start the server
```sh
npm run start
6. You'll get an JSON response of filename , mimetype and size of your uploaded file.