{"id":24813533,"url":"https://github.com/cloudinary/cloudinary-react","last_synced_at":"2025-05-15T09:08:04.042Z","repository":{"id":11692090,"uuid":"66932643","full_name":"cloudinary/cloudinary-react","owner":"cloudinary","description":"React components that utilize Cloudinary functionality","archived":false,"fork":false,"pushed_at":"2023-10-05T11:37:52.000Z","size":4317,"stargazers_count":502,"open_issues_count":8,"forks_count":219,"subscribers_count":34,"default_branch":"master","last_synced_at":"2025-05-04T11:03:12.756Z","etag":null,"topics":["cloudinary","cloudinary-sdk","cloudinary-sdks","image-manipulation","javascript","react-components","reactjs","sdk-js","video-manipulation","web-development"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudinary.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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":"2016-08-30T10:56:20.000Z","updated_at":"2025-04-04T00:12:40.000Z","dependencies_parsed_at":"2024-06-18T12:19:34.599Z","dependency_job_id":"f1bdadcc-2af4-4c8d-a976-79c4d53908ce","html_url":"https://github.com/cloudinary/cloudinary-react","commit_stats":{"total_commits":228,"total_committers":29,"mean_commits":7.862068965517241,"dds":0.7192982456140351,"last_synced_commit":"cf7b68bc3a71f3d94992a26fd557e3eaf3f89766"},"previous_names":[],"tags_count":40,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudinary","download_url":"https://codeload.github.com/cloudinary/cloudinary-react/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253263267,"owners_count":21880594,"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":["cloudinary","cloudinary-sdk","cloudinary-sdks","image-manipulation","javascript","react-components","reactjs","sdk-js","video-manipulation","web-development"],"created_at":"2025-01-30T15:26:26.557Z","updated_at":"2025-05-15T09:07:59.031Z","avatar_url":"https://github.com/cloudinary.png","language":"JavaScript","readme":"Cloudinary React SDK\n=========================\n## About\n**NOTE-IMPORTANT**: This is a legacy package, please find latest at https://github.com/cloudinary/frontend-frameworks/tree/master/packages/react\n\nThe Cloudinary React SDK allows you to quickly and easily integrate your application with Cloudinary.\nEffortlessly optimize and transform your cloud's assets.\n\n#### Note\nThis Readme provides basic installation and usage information.\nFor the complete documentation, see the [React SDK Guide](https://cloudinary.com/documentation/react1_integration).\n\n\n## Table of Contents\n- [Key Features](#key-features)\n- [Version Support](#Version-Support)\n- [Installation](#installation)\n- [Usage](#usage)\n    - [Setup](#Setup)\n    - [Transform and Optimize Assets](#Transform-and-Optimize-Assets)\n    - [Generate Image and HTML Tags](#Generate-Image-and-Video-HTML-Tags)\n\n## Key Features\n- [Transform](https://cloudinary.com/documentation/react1_video_manipulation#video_transformation_examples) and [optimize](https://cloudinary.com/documentation/react1_image_manipulation#image_optimizations) assets.\n- Generate [image](https://cloudinary.com/documentation/react1_image_manipulation#deliver_and_transform_images) and [video](https://cloudinary.com/documentation/react1_video_manipulation#video_element) tags.\n\n## Version Support\n| SDK Version   | React 15.3 | React 16.2 | React 16.3 | React 17 | React 18 |\n|---------------|------------|------------|------------|----------|----------|\n| 1.6.8 \u0026 up    | X          | X          | V          | V        | V        |\n| 1.2.0 - 1.6.7 | X          | X          | V          | X        | X        |\n| 1.0.5 - 1.1.4 | X          | V          | X          | X        | X        |\n| 1.0.0 - 1.0.4 | V          | X          | X          | X        | X        |\n\n## Installation\n### Install using your favorite package manager (yarn, npm)\n```bash\nnpm install cloudinary-react\n```\nOr\n```bash\nyarn add cloudinary-react\n```\n\n## Usage\n### Setup\n```javascript\nimport React from 'react';\nimport {Image, Video, Transformation} from 'cloudinary-react';\n```\n\n### Transform and Optimize Assets\n- [See full documentation](https://cloudinary.com/documentation/react1_image_manipulation)\n\n   ```jsx\n    // Apply a single transformation\n    \u003cImage cloudName=\"demo\" publicId=\"sample\"\u003e\n      \u003cTransformation crop=\"scale\" width=\"200\" angle=\"10\" /\u003e\n    \u003c/Image\u003e\n    ```\n\n    ```jsx\n    // Chain (compose) multiple transformations\n    \u003cImage cloudName=\"demo\" publicId=\"sample\"\u003e\n          \u003cTransformation angle=\"-45\" /\u003e\n          \u003cTransformation effect=\"trim\" angle=\"45\" crop=\"scale\" width=\"600\" /\u003e\n          \u003cTransformation overlay=\"text:Arial_100:Hello\" /\u003e\n    \u003c/Image\u003e\n    ```\n### Generate Image and Video HTML Tags\n    - Use \u003cImage\u003e to generate image tags\n    - Use \u003cVideo\u003e to generate video tags\n\n### File upload\nThis SDK does not provide file upload functionality, however there are [several methods of uploading from the client side](https://cloudinary.com/documentation/react1_image_and_video_upload).\n\n## Contributions\n- Ensure tests run locally (```npm run test```)\n- Open a PR and ensure Travis tests pass\n\n## Get Help\nIf you run into an issue or have a question, you can either:\n- [Open a Github issue](https://github.com/CloudinaryLtd/cloudinary-react/issues)  (for issues related to the SDK)\n- [Open a support ticket](https://cloudinary.com/contact) (for issues related to your account)\n\n## About Cloudinary\nCloudinary 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.\n\n\n## Additional Resources\n- [Cloudinary Transformation and REST API References](https://cloudinary.com/documentation/cloudinary_references): Comprehensive references, including syntax and examples for all SDKs.\n- [MediaJams.dev](https://mediajams.dev/): Bite-size use-case tutorials written by and for Cloudinary Developers\n- [DevJams](https://www.youtube.com/playlist?list=PL8dVGjLA2oMr09amgERARsZyrOz_sPvqw): Cloudinary developer podcasts on YouTube.\n- [Cloudinary Academy](https://training.cloudinary.com/): Free self-paced courses, instructor-led virtual courses, and on-site courses.\n- [Code Explorers and Feature Demos](https://cloudinary.com/documentation/code_explorers_demos_index): A one-stop shop for all code explorers, Postman collections, and feature demos found in the docs.\n- [Cloudinary Roadmap](https://cloudinary.com/roadmap): Your chance to follow, vote, or suggest what Cloudinary should develop next.\n- [Cloudinary Facebook Community](https://www.facebook.com/groups/CloudinaryCommunity): Learn from and offer help to other Cloudinary developers.\n- [Cloudinary Account Registration](https://cloudinary.com/users/register/free): Free Cloudinary account registration.\n- [Cloudinary Website](https://cloudinary.com): Learn about Cloudinary's products, partners, customers, pricing, and more.\n\n\n## Licence\nReleased under the MIT license.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudinary%2Fcloudinary-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudinary%2Fcloudinary-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudinary%2Fcloudinary-react/lists"}