All Projects → cloudinary → Cloudinary React

cloudinary / Cloudinary React

Licence: mit
React components that utilize Cloudinary functionality

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Cloudinary React

Cloudinary npm
Cloudinary NPM for node.js integration
Stars: ✭ 450 (+5.39%)
Mutual labels:  web-development, image-manipulation
React Arcgis
A few components to help you get started using the ArcGIS API for JavaScript and esri-loader with React
Stars: ✭ 251 (-41.22%)
Mutual labels:  web-development, react-components
best-of-react
🏆 A ranked list of awesome React open-source libraries and tools. Updated weekly.
Stars: ✭ 364 (-14.75%)
Mutual labels:  web-development, react-components
Selectiongan
[CVPR 2019 Oral] Multi-Channel Attention Selection GAN with Cascaded Semantic Guidance for Cross-View Image Translation
Stars: ✭ 366 (-14.29%)
Mutual labels:  image-manipulation
Anycost Gan
[CVPR 2021] Anycost GANs for Interactive Image Synthesis and Editing
Stars: ✭ 367 (-14.05%)
Mutual labels:  image-manipulation
Igan
Interactive Image Generation via Generative Adversarial Networks
Stars: ✭ 3,845 (+800.47%)
Mutual labels:  image-manipulation
Buffet
Buffet.js — React Components Library made with styled-components
Stars: ✭ 416 (-2.58%)
Mutual labels:  react-components
Js Dev Reads
A list of books 📚and articles 📝 for the discerning web developer to read.
Stars: ✭ 3,784 (+786.18%)
Mutual labels:  web-development
Front End Design Checklist
💎 The Design Checklist for Creative Web Designers and Patient Front-End Developers
Stars: ✭ 4,136 (+868.62%)
Mutual labels:  web-development
React Key Handler
React component to handle keyboard events 🔑
Stars: ✭ 386 (-9.6%)
Mutual labels:  react-components
Bem React
A set of tools for developing user interfaces using the BEM methodology in React
Stars: ✭ 382 (-10.54%)
Mutual labels:  react-components
Webdevelopersecuritychecklist
A checklist of important security issues you should consider when creating a web application.
Stars: ✭ 379 (-11.24%)
Mutual labels:  web-development
Cloudinary gem
Cloudinary GEM for Ruby on Rails integration
Stars: ✭ 394 (-7.73%)
Mutual labels:  image-manipulation
Esri.github.io
Esri GitHub landing page
Stars: ✭ 372 (-12.88%)
Mutual labels:  web-development
Prerender.js
Fast webpages for all browsers.
Stars: ✭ 411 (-3.75%)
Mutual labels:  web-development
React Leaflet
React components for Leaflet maps
Stars: ✭ 3,939 (+822.48%)
Mutual labels:  react-components
Esri Loader
A tiny library to help load ArcGIS API for JavaScript modules in non-Dojo applications
Stars: ✭ 400 (-6.32%)
Mutual labels:  web-development
Enzyme
JavaScript Testing utilities for React
Stars: ✭ 19,781 (+4532.55%)
Mutual labels:  react-components
React Bootstrap
Bootstrap components built with React
Stars: ✭ 20,261 (+4644.96%)
Mutual labels:  react-components
Recipes App React Native
Recipes App in React Native
Stars: ✭ 386 (-9.6%)
Mutual labels:  react-components

Cloudinary React Library

Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline.

Easily upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software. Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your website’s graphics requirements. Images are seamlessly delivered through a fast CDN, and much much more.

Cloudinary offers comprehensive APIs and administration capabilities and is easy to integrate with any web application, existing or new.

Cloudinary provides URL and HTTP based APIs that can be easily integrated with any Web development framework.

Installation

NPM

  1. Install the files using the following command. Use the optional --save parameter if you wish to save the dependency in your bower.json file.

    npm install cloudinary-react --save
    
  2. Include the javascript files in your code. For Example:

    import {Image} from 'cloudinary-react';
    

Setup

In order to properly use this library you have to provide it with a few configuration parameters. All configuration parameters can be applied directly to the element or using a CloudinaryContext element.

ReactDOM.render(
            <div>
                <h1>Hello, world!</h1>
                <Image cloudName="demo" publicId="sample" width="300" crop="scale"/>
                // Or for more advanced usage:
                // import {CloudinaryContext, Transformation} from 'cloudinary-react';
                <CloudinaryContext cloudName="demo">
                    <Image publicId="sample">
                        <Transformation width="200" crop="scale" angle="10"/>
                    </Image>
                </CloudinaryContext>
            </div>,
            document.getElementById('example')
    );

Required:

  • cloudName - The cloudinary cloud name associated with your Cloudinary account.

Optional:

  • privateCdn, secureDistribution, cname, cdnSubdomain - Please refer to Cloudinary Documentation for information on these parameters.

Usage

The library includes 6 Components:

  • CloudinaryContext
  • Image
  • Audio
  • Video
  • Transformation
  • Placeholder - can only be used as child of an Image component

Components Demo

Storybook for the components is available here

CloudinaryContext

CloudinaryContext allows you to define shared parameters that are applied to all children elements.

Image

The Image element defines a Cloudinary Image tag.

Video

The Video element defines a Cloudinary Video tag.

Transformation

The Transformation element allows you to defined additional transformations on the parent element.

For example:

<Image cloudName="demo" publicId="sample">
    <Transformation angle="-45"/>
    <Transformation effect="trim" angle="45" crop="scale" width="600">
      <Transformation overlay="text:Arial_100:Hello" />
    </Transformation>
</Image>

The Cloudinary Documentation can be found at: http://cloudinary.com/documentation

Additional resources

Additional resources are available at:

Support

You can open an issue through GitHub.

Contact us at http://cloudinary.com/contact.

Stay tuned for updates, tips and tutorials: Blog, Twitter, Facebook.

Join the Community

Impact the product, hear updates, test drive new features and more! Join here.

Updating github pages

The github pages source is the "gh-pages" branch. To generate updated storybook:

  1. Switch to "gh-pages" branch
  2. pull from master
  3. rebuild storybook by running "npm run build-storybook"
  4. commit and push

License

Released under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].