Cloudinary is a cloud-based media management platform that provides a comprehensive set of tools and services for managing and delivering images and videos on the web and mobile applications. It offers features such as automatic image optimization, responsive image delivery, video transcoding, and image and video manipulation, all accessible through a simple API.
One of the main advantages of Cloudinary is that it provides developers with a simple and intuitive interface to manage their media files, as well as an extensive set of features that can be easily integrated into any web or mobile application. It also has a generous free plan that allows developers to test and use its features before committing to a paid plan.
Cloudinary is used by a wide range of companies, including Forbes, StubHub, and Hootsuite, and it has received positive reviews for its ease of use, reliability, and performance.
70
56
Amir Tocker | 218 |
Tal Lev-Ami | 95 |
cloudinary-pkoniu | 61 |
patrick-tolosa | 61 |
strausr | 47 |
RTLcoil | 44 |
Daniel Cohen | 40 |
cloudinary-bot | 33 |
Nadav Soferman | 31 |
Patryk Konior | 29 |
Danny Valentine | 18 |
nadavofi | 17 |
Yomes | 13 |
Raya Straus | 10 |
Raz Konforti | 9 |
Stephen | 8 |
Itai Benari | 6 |
Karl Horky | 6 |
Naman Goel | 6 |
tamara | 6 |
The Cloudinary Node SDK allows you to quickly and easily integrate your application with Cloudinary.
Effortlessly optimize, transform, upload and manage your cloud's assets.
This Readme provides basic installation and usage information.
For the complete documentation, see the Node SDK Guide.
SDK Version | node 6-16 |
---|---|
1.0.0 & up | V |
npm install cloudinary
// Require the Cloudinary library
const cloudinary = require('cloudinary').v2
cloudinary.url("sample.jpg", {width: 100, height: 150, crop: "fill", fetch_format: "auto"})
cloudinary.v2.uploader.upload("/home/my_image.jpg", {upload_preset: "my_preset"}, (error, result)=>{
console.log(result, error);
});
cloudinary.v2.uploader.upload_large(LARGE_RAW_FILE, {
chunk_size: 7000000
}, (error, result) => {console.log(error)});
If you run into an issue or have a question, you can either:
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.
Released under the MIT license.