https://github.com/musabdev/nodejs_fileupload
This is a node js file uploader built with multer and mongoose. In this uploader you can upload files and also you can protect the file with a password and we always hash the password with the help of bcrypt.
https://github.com/musabdev/nodejs_fileupload
Last synced: 6 months ago
JSON representation
This is a node js file uploader built with multer and mongoose. In this uploader you can upload files and also you can protect the file with a password and we always hash the password with the help of bcrypt.
- Host: GitHub
- URL: https://github.com/musabdev/nodejs_fileupload
- Owner: MusabDev
- Created: 2022-07-23T03:27:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-23T03:51:09.000Z (over 3 years ago)
- Last Synced: 2025-04-08T15:49:23.102Z (9 months ago)
- Language: EJS
- Homepage:
- Size: 43 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Node JS File Uploader
This is a node js file uploader built with multer and mongoose. In this uploader you can upload files and also you can protect the file with a password and we always hash the password with the help of bcrypt.
## Demo

## Deployment
### Environment Variables
To run this project, you will need to add the following environment variables to your .env file
`MONGO_URI` - is contains your MongoDB Atlas connection link
`PORT` - your server port
### To run this project
Installing node_modules
```bash
npm install
```
Running server
```bash
npm run dev
```