npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

karma-dev-react-aws-s3-typescript

v1.1.1

Published

Open source npm package to upload your files into AWS S3 Bucket directly using react(typescript template)

Downloads

9

Readme

Source code is taken from https://github.com/NimperX/react-aws-s3-typescript.git

I have forked and published it it to resove an issue I had with iConfig type thowing errors when instantiated from process.env.*

react-aws-s3-typescript

Open source npm package to upload your files into AWS S3 Bucket directly using react(typescript template)

Table of Contents

Introduction

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

Features

  • Upload files to S3 bucket and retrive the public url
  • Delete files from S3 bucket

Installing

Using npm

$ npm install karma-dev-react-aws-s3-typescript

Example

Upload a file to AWS S3 Bucket

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 */
    }

List files of a AWS S3 Bucket

    /* 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 */

Delete a file from AWS S3 Bucket

    /* 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

S3 Config

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.

Credits

This react-aws-s3-typescript package is heavily inspired by the react-aws-s3 package provided by developer-amit.

License

Released under MIT license.

Back to top