{"id":19243087,"url":"https://github.com/tisankan/s3-file-uploader","last_synced_at":"2025-10-30T05:18:03.014Z","repository":{"id":222886976,"uuid":"758616777","full_name":"Tisankan/s3-file-uploader","owner":"Tisankan","description":"A lightweight Node.js package for easy file uploads to Amazon S3. This package simplifies the process of configuring AWS S3 credentials and uploading files to S3 buckets in Node.js applications.","archived":false,"fork":false,"pushed_at":"2024-08-27T06:44:34.000Z","size":12759,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-05T03:42:14.077Z","etag":null,"topics":["amazon-web-services","aws-s3","aws-sdk","cloud-storage","developer-tools","file-management","file-upload","nodejs","nodejs-s3","npm-package"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Tisankan.png","metadata":{"files":{"readme":"READMe.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-16T17:45:55.000Z","updated_at":"2024-08-27T06:44:37.000Z","dependencies_parsed_at":"2024-08-27T07:44:49.381Z","dependency_job_id":"e29dc1ac-ec3f-450c-8302-602e61e5483a","html_url":"https://github.com/Tisankan/s3-file-uploader","commit_stats":null,"previous_names":["tisankan/s3-file-uploader"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tisankan%2Fs3-file-uploader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tisankan%2Fs3-file-uploader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tisankan%2Fs3-file-uploader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tisankan%2Fs3-file-uploader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tisankan","download_url":"https://codeload.github.com/Tisankan/s3-file-uploader/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240331313,"owners_count":19784644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["amazon-web-services","aws-s3","aws-sdk","cloud-storage","developer-tools","file-management","file-upload","nodejs","nodejs-s3","npm-package"],"created_at":"2024-11-09T17:16:37.985Z","updated_at":"2025-10-30T05:17:57.982Z","avatar_url":"https://github.com/Tisankan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# s3-file-uploader\n\nA simple Node.js package for uploading files to AWS S3. This package allows users to configure their own AWS S3 credentials and seamlessly upload files to their S3 buckets.\n\n## Installation\n\n```bash\nnpm install s3-file-uploader\n```\n\n## Configuration\n\nCreate a config.js file in your project's root directory to store your AWS S3 credentials. Replace the placeholder values with your actual AWS S3 credentials:\n```javascript\n// config.js\nmodule.exports = {\n  accessKeyId: 'YOUR_ACCESS_KEY_ID',\n  secretAccessKey: 'YOUR_SECRET_ACCESS_KEY',\n  region: 'YOUR_REGION',\n  bucketName: 'YOUR_BUCKET_NAME',\n};\n```\n## Usage\n\nCreate a JavaScript file (e.g., app.js) in your project and use the s3-file-uploader package to upload a file to your S3 bucket:\n\n```javascript\n// app.js\nconst S3FileUploader = require('s3-file-uploader');\nconst config = require('./config'); // Load your AWS S3 credentials from config.js\n\nconst uploader = new S3FileUploader(config);\n\nconst filePath = 'path/to/your/file.txt';\nconst destinationPath = 'destination/path/in/s3/file.txt';\n\nuploader.uploadFile(filePath, destinationPath)\n  .then(() =\u003e console.log('File uploaded successfully.'))\n  .catch((error) =\u003e console.error('Error uploading file:', error));\n```\n## Author\n\n    Name: Tisankan\n    Email: info.tisankan@gmail.com\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftisankan%2Fs3-file-uploader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftisankan%2Fs3-file-uploader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftisankan%2Fs3-file-uploader/lists"}