cloudinary (1.35.0)

Published 2026-02-24 13:54:05 +00:00 by atheaadmin

Installation

registry=
npm install cloudinary@1.35.0
"cloudinary": "1.35.0"

About this package

Cloudinary Node SDK

About

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.

Note

This Readme provides basic installation and usage information. For the complete documentation, see the Node SDK Guide.

Table of Contents

Key Features

Version Support

SDK Version node 6-16
1.0.0 & up V

Installation

npm install cloudinary

Usage

Setup

// Require the Cloudinary library
const cloudinary = require('cloudinary').v2

Transform and Optimize Assets

cloudinary.url("sample.jpg", {width: 100, height: 150, crop: "fill", fetch_format: "auto"})

Upload

cloudinary.v2.uploader.upload("/home/my_image.jpg", {upload_preset: "my_preset"}, (error, result)=>{
  console.log(result, error);
});

Large/Chunked Upload

   cloudinary.v2.uploader.upload_large(LARGE_RAW_FILE, {
          chunk_size: 7000000
        }, (error, result) => {console.log(error)});

Security options

Contributions

  • Ensure tests run locally (add test command)
  • Open a PR and ensure Travis tests pass

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.

Dependencies

Dependencies

ID Version
cloudinary-core ^2.10.2
core-js ^3.6.5
lodash ^4.17.21
q ^1.5.1

Development Dependencies

ID Version
@types/expect.js ^0.3.29
@types/mocha ^7.0.2
@types/node ^13.5.0
babel-cli ^6.26.0
babel-core ^6.26.3
babel-plugin-transform-runtime ^6.23.0
babel-polyfill ^6.26.0
babel-preset-env ^1.7.0
babel-preset-stage-0 ^6.24.1
babel-register ^6.26.0
babel-runtime ^6.26.0
date-fns ^2.16.1
dotenv 4.x
dtslint ^0.9.1
eslint ^6.8.0
eslint-config-airbnb-base ^14.2.1
eslint-plugin-import ^2.20.2
expect.js 0.3.x
glob ^7.1.6
jsdoc ^3.5.5
jsdom ^9.12.0
jsdom-global 2.1.1
mocha ^6.2.3
mock-fs ^4.12.0
nyc ^13.3.0
rimraf ^3.0.0
sinon ^6.1.4
typescript ^3.7.5
webpack-cli ^3.2.1

Optional Dependencies

ID Version
proxy-agent ^5.0.0
Details
npm
2026-02-24 13:54:05 +00:00
0
Cloudinary
MIT
latest
85 KiB
Assets (1)
Versions (1) View all
1.35.0 2026-02-24