{"id":32999728,"url":"https://github.com/cloudinary/cloudinary-vue","last_synced_at":"2025-12-25T01:48:22.736Z","repository":{"id":41600554,"uuid":"162087629","full_name":"cloudinary/cloudinary-vue","owner":"cloudinary","description":"Cloudinary components library for Vue.js application, for image and video optimization. ","archived":false,"fork":false,"pushed_at":"2023-07-19T00:38:55.000Z","size":12452,"stargazers_count":99,"open_issues_count":15,"forks_count":10,"subscribers_count":30,"default_branch":"master","last_synced_at":"2024-07-06T03:44:05.604Z","etag":null,"topics":["cloudinary","cloudinary-components","cloudinary-sdk","cloudinary-sdks","cloudinary-vue","image-manipulation","sdk","sdk-js","video-manipulation","vue-components","vuejs"],"latest_commit_sha":null,"homepage":"https://cloudinary.com/documentation/vue_integration","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudinary.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":null,"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":"2018-12-17T06:55:21.000Z","updated_at":"2024-04-24T17:08:48.000Z","dependencies_parsed_at":"2024-01-16T12:50:06.015Z","dependency_job_id":"7d287c2e-5a13-4e69-93a4-1bc460904530","html_url":"https://github.com/cloudinary/cloudinary-vue","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/cloudinary/cloudinary-vue","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary-vue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary-vue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary-vue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary-vue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudinary","download_url":"https://codeload.github.com/cloudinary/cloudinary-vue/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudinary%2Fcloudinary-vue/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285879574,"owners_count":27247109,"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","status":"online","status_checked_at":"2025-11-22T02:00:05.934Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-components","cloudinary-sdk","cloudinary-sdks","cloudinary-vue","image-manipulation","sdk","sdk-js","video-manipulation","vue-components","vuejs"],"created_at":"2025-11-13T13:00:27.152Z","updated_at":"2025-11-23T00:02:22.690Z","avatar_url":"https://github.com/cloudinary.png","language":"JavaScript","readme":"Cloudinary Vue SDK\n=========================\n[![Build Status](https://api.travis-ci.com/cloudinary/cloudinary-vue.svg?branch=master)](https://app.travis-ci.com/github/cloudinary/cloudinary-vue)\n## About\nThe Cloudinary Vue SDK allows you to quickly and easily integrate your application with Cloudinary.\nEffortlessly optimize and transform your cloud's assets.\n\n\n### Additional documentation\nThis Readme provides basic installation and usage information.\nFor the complete documentation, see the [Vue SDK Guide](https://cloudinary.com/documentation/vue_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/vue_video_manipulation#video_transformation_examples) and [optimize](https://cloudinary.com/documentation/vue_image_manipulation#image_optimizations) assets (links to docs).\n- Generate [image](https://cloudinary.com/documentation/vue_image_manipulation#deliver_and_transform_images) and [video](https://cloudinary.com/documentation/vue_video_manipulation#cldvideo_component) tags (links to docs).\n\n\n## Version Support\n| SDK Version   | Vue 2    | Vue 3  |\n|---------------|----------|--------|\n| 1.0.0 - 1.2.3 | V        | X      |\n\n\n\n## Installation\n### Install using Vue-CLI\n- After you create your application with Vue-CLI, navigate to the created app folder, and install Cloudinary SDK by:\n    ```bash\n    vue add cloudinary\n    ```\n- Set up your cloud name and pick the components to use (or use all 😃)\n  ![Set up with cloudName and options](http://bit.ly/2WSKTf0)\n- A `cloudinary.js` file will be added to your src directory, at the same level as your `main.js` file. Feel free to customize it if you like. And have fun with Cloudinary! 🤟\n- For more information on the plugin, check out our [Vue-CLI plugin for Cloudinary Repo](https://github.com/cloudinary/vue-cli-plugin-cloudinary).\n\n### Install using your favorite package manager (yarn, npm)\n```bash\nnpm install cloudinary-vue\nyarn add cloudinary-vue\n```\n### Nuxt.js\nFor [Nuxt.js](https://nuxtjs.org) projects, use [Cloudinary module](https://cloudinary.nuxtjs.org/). You can set it up by using the following:\n```\nyarn add @nuxtjs/cloudinary\n# Or\nnpm i @nuxtjs/cloudinary\n```\n\n## Usage \n### Setup\n```javascript\nimport Vue from 'vue';\nimport Cloudinary, { CldImage, CldVideo, CldTransformation, CldContext } from \"cloudinary-vue\";\n\nVue.use(Cloudinary, {\n  configuration: { cloudName: \"demo\" },\n  components: {\n    CldContext,\n    CldImage, \n    CldVideo, \n    CldTransformation,\n  }\n});\n```\nYou can also import the Cloudinary components manually in each of your components.\n\n### Transform and Optimize Assets \n- [See full documentation](https://cloudinary.com/documentation/vue_image_manipulation)\n    \n   ```jsx\n    // Apply a single transformation\n        \u003ccld-context cloudName=\"demo\"\u003e\n          \u003ccld-image publicId=\"sample\"\u003e\n            \u003ccld-transformation crop=\"scale\" width=\"200\" angle=\"10\" /\u003e\n          \u003c/cld-image\u003e\n        \u003c/cld-context\u003e\n    ```\n\n    ```jsx\n    // Chain (compose) multiple transformations\n    \u003ccld-context cloudName=\"demo\"\u003e\n       \u003ccld-image cloudName=\"demo\" publicId=\"sample\"\u003e\n          \u003ccld-transformation angle=\"-45\" /\u003e\n          \u003ccld-transformation effect=\"trim\" angle=\"45\" crop=\"scale\" width=\"600\" /\u003e\n          \u003ccld-transformation overlay=\"text:Arial_100:Hello\" /\u003e\n       \u003c/cld-image\u003e\n  \u003c/cld-context\u003e\n    ```\n### Generate Image and Video HTML Tags\n    - Use \u003ccld-image\u003e to generate image tags\n    - Use \u003ccld-video\u003e to generate video Tags\n\n### File upload\n  This SDK does not provide file upload functionality, however there are [several methods of uploading from the client side](https://cloudinary.com/documentation/vue_image_and_video_upload).\n\n\n## Contributions\nSee [contributing guidelines](/CONTRIBUTING.md).\n\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/cloudinary/cloudinary-vue/issues) (for issues related to the SDK)\n- [Open a support ticket](https://cloudinary.com/contact) (for issues related to your account)\n\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)\n\n\n## Licence\nReleased under the MIT license.\n","funding_links":[],"categories":["Tools"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudinary%2Fcloudinary-vue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudinary%2Fcloudinary-vue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudinary%2Fcloudinary-vue/lists"}