Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
react-aws-s3-typescript
Advanced tools
Open source npm package to upload your files into AWS S3 Bucket directly using react(typescript template)
Open source npm package to upload your files into AWS S3 Bucket directly using react(typescript template)
Open source npm package to upload your media and other types of files directly into AWS S3 Bucket using react typescript template. You can upload and retrive the public url for the file and delete the files if needed.
You need to have an AWS account to use AWS S3 Bucket. If you already do not have an account, create an account here.
Readmore about AWS S3 buket: https://docs.aws.amazon.com/s3/index.html
Using npm
$ npm install react-aws-s3-typescript
You can define a default directory for uploads using the s3Config object
/* AWS S3 config options */
/* Highly recommended to declare the config object in an external file import it when needed */
/* s3Config.ts */
export const s3Config = {
bucketName: 'bucket-name',
dirName: 'directory-name', /* Optional */
region: 'ap-south-1',
accessKeyId:'ABCD12EFGH3IJ4KLMNO5',
secretAccessKey: 'a12bCde3f4+5GhIjKLm6nOpqr7stuVwxy8ZA9bC0',
s3Url: 'https:/your-aws-s3-bucket-url/' /* Optional */
}
/* End of s3Config.ts */
/* AWS S3 Client */
/* uploadFile.ts */
import ReactS3Client from 'react-aws-s3-typescript';
import { s3Config } from './s3Config.ts';
const uploadFile = async () => {
/* Import s3 config object and call the constrcutor */
const s3 = new ReactS3Client(s3Config);
/* You can use the default directory defined in s3Config object
* Or you can a define custom directory to upload when calling the
* constructor using js/ts object destructuring.
*
* const s3 = new ReactS3Client({
* ...s3Config,
* dirName: 'custom-directory'
* });
*
*/
const filename = 'filename-to-be-uploaded'; /* Optional */
/* If you do not specify a file name, file will be uploaded using uuid generated
* by short-UUID (https://www.npmjs.com/package/short-uuid)
*/
try {
const res = await s3.uploadFile(file, filename);
console.log(res);
/*
* {
* Response: {
* bucket: "bucket-name",
* key: "directory-name/filename-to-be-uploaded",
* location: "https:/your-aws-s3-bucket-url/directory-name/filename-to-be-uploaded"
* }
* }
*/
} catch (exception) {
console.log(exception);
/* handle the exception */
}
}
/* End of uploadFile.ts */
/* AWS S3 Client */
/* listFiles.ts */
import ReactS3Client from 'react-aws-s3-typescript';
import { s3Config } from './s3Config.ts';
const listFiles = async () => {
/* Import s3 config object and call the constrcutor */
const s3 = new ReactS3Client(s3Config);
try {
const fileList = await s3.listFiles();
console.log(fileList);
/*
* {
* Response: {
* message: "Objects listed succesfully",
* data: { // List of Objects
* ... // Meta data
* Contents: [] // Array of objects in the bucket
* }
* }
* }
*/
} catch (exception) {
console.log(exception);
/* handle the exception */
}
}
/* End of listFiles.ts */
/* AWS S3 Client */
/* deleteFile.ts */
import ReactS3Client from 'react-aws-s3-typescript';
import { s3Config } from './s3Config.ts';
const deleteFile = async () => {
/* Import s3 config object and call the constrcutor */
const s3 = new ReactS3Client(s3Config);
/* Define the filepath from the root of the bucket to the file to be deleted */
const filepath = 'directory-name/filename-to-be-deleted';
try {
await s3.deleteFile(filepath);
console.log('File deleted');
} catch (exception) {
console.log(exception);
/* handle the exception */
}
}
/* End of deleteFile.ts */
Important : Add public-read
Canned ACL to the bucket to grant the public read access for files.
Read more: https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl
These are the available config options for calling the S3 constructor bucketName
, region
, accessKeyId
and secretAccessKey
are required. Upload will default to root path, if dirName
is not specified.
This react-aws-s3-typescript
package is heavily inspired by the react-aws-s3
package provided by developer-amit.
Released under MIT license.
FAQs
Open source npm package to upload your files into AWS S3 Bucket directly using react(typescript template)
The npm package react-aws-s3-typescript receives a total of 6,011 weekly downloads. As such, react-aws-s3-typescript popularity was classified as popular.
We found that react-aws-s3-typescript demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.