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

react-native-presigned-s3

v0.2.2

Published

Helpers for s3 presign upload and download

Downloads

52

Readme

react-native-presigned-s3

Handles S3 PreSigned Upload/Download for folders and single files provides hooks, needs backend to deliver PreSigned post and get payloads can be mimicked in app as well but not recommended for access control. To check out expected server responses please see example/server and for simple demo app example/app

Sample

Setup

    1. yarn add react-native-presigned-s3 react-native-background-upload react-native-fs @react-native-async-storage/async-storage
  1. This Lib has peer-dependency on these 2 libs:
    1. RNFS
    2. Uploader
    3. AsyncStorage
  2. appGroup setup for Uploader and corresponding Apple doc
  3. RNFS setup for background downloads RNFS Doc

Usage

  1. First need to define S3Client and Wrap your tree with PS3Provider

    const s3Client = new S3Client(handlers, {
      appGroup: 'com.example.ps3.test', // appGroup of app for background upload support https://developer.apple.com/documentation/foundation/nsfilemanager/1412643-containerurlforsecurityapplicati
      directory: 'ps3_test', // folder under RNFS.CachesDirectoryPath for local storage
      immediateDownload: true,      
      shouldPersist: false,
      persistKey: '@example_ps3_storage_key', // async storage key for presistency
      retries: 5,
    });
    <PS3Provider S3Client={s3Client}>
          <QueryClientProvider client={queryClient}>
            <SafeAreaProvider>
              <NavigationContainer>
                <Stack.Navigator>
                  <Stack.Screen
                    name="List"
                    component={ListScreen}
                    initialParams={{
                      path: 'home/',
                    }}
                    options={{
                      headerRight: listRightButton,
                    }}
                  />
                  <Stack.Screen name="Upload" component={UploadScreen} />
                </Stack.Navigator>
              </NavigationContainer>
            </SafeAreaProvider>
          </QueryClientProvider>
        </PS3Provider>
  2. To list files under prefix

    const {files, loading, reload} = useList(prefix);
  3. To monitor single file and manipulate it

    const {removeFile, files, addDownload} = useList(key, {
    progress: true,
    });

    Here we will get single file (assuming key provided is exact and not prefix) and will be updated if its downloaded or uploaded

  4. To upload single file under given folder (prefix)

     const {addUpload} = useList(current_path); 
     addUpload(key, img.path, {
         payload: {a: 'b'}, // meta data stored in s3
         type: img.mime,
       }); 

    as seen in example/app this will trigger usseList(prefix) and will also be monitored in seList(key) and we get realtime upload progress