https://github.com/techindeck/fileuploader
Simple TypeScript Express Server for File Upload to S3
https://github.com/techindeck/fileuploader
express typescript
Last synced: about 2 months ago
JSON representation
Simple TypeScript Express Server for File Upload to S3
- Host: GitHub
- URL: https://github.com/techindeck/fileuploader
- Owner: techindeck
- License: mit
- Created: 2024-03-09T18:14:25.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-09T18:22:28.000Z (over 2 years ago)
- Last Synced: 2024-03-09T19:29:36.692Z (over 2 years ago)
- Topics: express, typescript
- Language: TypeScript
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TypeScript Express FileUploader to S3
File uploader is a simple express typescript implementation for file upload and remove from S3.
## Installation
```bash
npm install or yarn
```
### Setup ENV
Copy the `env.example` file to `.env` and update the S# credential.
```.env
APP_NAME=map
APP_ENV=local
APP_PORT=3000
# S3 Setup
AWS_BUCKET_NAME=
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_REGION=ap-south-1
AWS_BUCKET_PATH=""
```
### Start Server
`yarn dev` or `npm run dev` to start the server
### Contributing
Contributions are welcome! Please feel free to submit pull requests or open issues for any improvements or feature requests.
### License
This project is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT).
---