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 🙏

© 2025 – Pkg Stats / Ryan Hefner

cloudinary-react-native

v1.3.0

Published

Cloudinary React Native SDK: upload, transform, and deliver images and videos through Cloudinary's media pipeline.

Downloads

8,917

Readme

Cloudinary React Native SDK

Build Status

About

The Cloudinary React Native SDK allows you to quickly and easily integrate your application with Cloudinary. Effortlessly optimize and transform your cloud's assets.

Note

This Readme provides basic installation and usage information.

Table of Contents

Key Features

Transform and optimize assets. Visit our documentation to learn more about media optimization and transformations.

Version Support

| SDK Version | React Native Version | Expo SDK Version | Video Library | |---------------|----------------------|---------------|---------| | 1.0.0 - 1.1.0 | >= 0.72 | 50 | expo-av | | 1.2.x > | >= 0.72 | 50-53 | expo-av / expo-video |

Installation

You can install the package using your preferred package manager:

# Using npm
npm install cloudinary-react-native

# Using yarn
yarn add cloudinary-react-native

# Using pnpm
pnpm add cloudinary-react-native

### For Video Player functionality
The SDK supports both `expo-av` and `expo-video` libraries. The appropriate library will be automatically detected and used:

**For Expo SDK 50-51 (expo-av):**
```bash
npm install expo-av

For Expo SDK 52+ (expo-video - recommended):

npm install expo-video

Note: expo-av is deprecated in SDK 52 and removed in SDK 53. For newer Expo versions, use expo-video.

For Video Layer with Controls (CLDVideoLayer)

If you want to use the CLDVideoLayer component with UI controls, you need to install additional dependencies:

npm install @expo/vector-icons expo-font

Or

yarn add @expo/vector-icons expo-font

Usage

Setup

The Cloudinary class is the main entry point for using the library. Your cloud_name is required to create an instance of this class. Your api_key and api_secret are also needed to perform secure API calls to Cloudinary (e.g., image and video uploads). Setting the configuration parameters can be done either programmatically using an appropriate constructor of the Cloudinary class or globally using an environment variable. You can find your account-specific configuration parameters in the Dashboard page of your account console.

Here's an example of setting configuration parameters in your React Native application:

import { AdvancedImage } from 'cloudinary-react-native';
import { Cloudinary } from '@cloudinary/url-gen';

Transform and Optimize Assets

import { AdvancedImage } from 'cloudinary-react-native';
import {Cloudinary} from '@cloudinary/url-gen';

const myCld = new Cloudinary({
  cloud: {
    cloudName: "demo",
  },
});

let img = myCld.image('sample');

export default function App() {
  return (
    <View style={styles.container}>
      <AdvancedImage cldImg={img} style={{width:300, height:200}}/>
    </View>
  );
};

Video Player

The AdvancedVideo component provides video playback capabilities with optional analytics tracking. Note: This requires either expo-av (SDK 50-51) or expo-video (SDK 52+) to be installed.

import { AdvancedVideo } from 'cloudinary-react-native';
import {Cloudinary} from '@cloudinary/url-gen';

const myCld = new Cloudinary({
  cloud: {
    cloudName: "demo",
  },
});

let video = myCld.video('sea_turtle');

export default function App() {
  return (
    <View style={styles.container}>
      <AdvancedVideo
        cldVideo={video}
        videoStyle={{width: 400, height: 220}}
      />
    </View>
  );
};

Video Player with Analytics

Enable analytics tracking for detailed video performance insights:

import { AdvancedVideo } from 'cloudinary-react-native';
import {Cloudinary} from '@cloudinary/url-gen';

const myCld = new Cloudinary({
  cloud: {
    cloudName: "demo",
  },
});

let video = myCld.video('sea_turtle');

export default function App() {
  return (
    <View style={styles.container}>
      <AdvancedVideo
        cldVideo={video}
        videoStyle={{width: 400, height: 220}}
        enableAnalytics={true}
        autoTrackAnalytics={true}
        analyticsOptions={{
          customData: {
            userId: 'user-123',
            appVersion: '1.0.0'
          },
          videoPlayerType: 'expo-av',
          videoPlayerVersion: '14.0.0'
        }}
      />
    </View>
  );
};

Video Layer with Controls

The CLDVideoLayer component provides a full-screen video experience with overlay controls, seekbar, and customizable actions. Note: This requires @expo/vector-icons and expo-font to be installed.

import React from 'react';
import { View, StyleSheet } from 'react-native';
import { CLDVideoLayer } from 'cloudinary-react-native';
import { Cloudinary } from '@cloudinary/url-gen';
import { useFonts } from 'expo-font';
import { Ionicons } from '@expo/vector-icons';

const myCld = new Cloudinary({
  cloud: {
    cloudName: "demo",
  },
});

export default function App() {
  // Preload fonts to prevent warnings
  const [fontsLoaded] = useFonts({
    ...Ionicons.font,
  });

  if (!fontsLoaded) {
    return null; // or a loading component
  }

  const video = myCld.video('sea_turtle');

  const handleBack = () => {
    // Handle back navigation
  };

  const handleShare = () => {
    // Handle custom share action
  };

  return (
    <View style={styles.container}>
      <CLDVideoLayer
        cldVideo={video}
        onBack={handleBack}
        onShare={handleShare}
      />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#000',
  },
});

Uploading Assets

The following example performs an unsigned upload of a string using the default settings, a request upload callback, and an upload preset (required for unsigned uploads):

  const cld = new Cloudinary({
    cloud: {
      cloudName: '<your_cloud_name>'
    },
    url: {
      secure: true
    }
  });

  const options: UploadApiOptions = {
    upload_preset: 'sample_preset',
    unsigned: true,
  }

    await upload(cld, {file: filePath , options: options, callback: (error: any, response: any) => {
        //.. handle response
    }})

The uploaded image is assigned a randomly generated public ID, which is returned as part of the response object. The image is immediately available for download through a CDN:

cloudinary.image().generate("generatedPublicId")

http://res.cloudinary.com/<your cloud>/image/upload/generatedPublicId.jpg

You can also specify your own public ID:

const options: UploadApiOptions = {
  upload_preset: 'sample_preset',
  publicId: "sample_remote",
}

await upload(cld, {file: filePath , options: options, callback: (error: any, response: any) => {
    //.. handle response
  }})

For security reasons, mobile applications cannot contain the full account credentials, and so they cannot freely upload resources to the cloud. Cloudinary provides two different mechanisms to enable end-users to upload resources without providing full credentials.

1. Unsigned uploads using Upload Presets.

You can create an upload preset in your Cloudinary account console, defining rules that limit the formats, transformations, dimensions and more. Once the preset is defined, it's name is supplied when calling upload. An upload call will only succeed if the preset name is used and the resource is within the preset's pre-defined limits.

The following example uploads a local resource, available as a Uri, assuming a preset named 'sample_preset' already exists in the account:

  const options: UploadApiOptions = {
  upload_preset: 'sample_preset',
  unsigned: true,
}

await upload(cld, {file: uri , options: options, callback: (error: any, response: any) => {
    //.. handle response
  }})
2. Signed uploads with server-generated signature

Another way to upload without including credentials is using signed uploads. You should generate the upload authentication signature on the server side, where it's safe to store the api_secret. For more information on how to sign upload you can visit our documentation.

The Cloudinary React Native SDK allows you to provide a server-generated signature and any additional parameters that were generated on the server side (instead of signing using api_secret locally).

Your server can use any Cloudinary libraries (Ruby on Rails, PHP, Python & Django, Java, Perl, .Net, etc.) for generating the signature. The following JSON in an example of a response of an upload authorization request to your server, For more information you can visit our documentation:

	{
	  "signature": "sgjfdoigfjdgfdogidf9g87df98gfdb8f7d6gfdg7gfd8",
	  "public_id": "abdbasdasda76asd7sa789",
	  "timestamp": 1346925631,
	  "api_key": "123456789012345"
	}

Use the signature field to put the signature you got from your server, when using signature api key is required as well as part of the Cloudinary initialization.

  const options: UploadApiOptions = {
    upload_preset: 'ios_sample',
    signature: "<your_signature>",
  }
  await upload(cld, {file: filePath , options: options, callback: (error: any, response: any) => {
    //.. handle response
  }})

Contributions

See contributing guidelines.

Get Help

If you run into an issue or have a question, you can either:

About Cloudinary

Cloudinary is a powerful media API for websites and mobile apps alike, Cloudinary enables developers to efficiently manage, transform, optimize, and deliver images and videos through multiple CDNs. Ultimately, viewers enjoy responsive and personalized visual-media experiences—irrespective of the viewing device.

Additional Resources

Licence

Released under the MIT license.