Skip to content

cloudinary/cloudinary_npm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
cloudinary-bot
Mar 1, 2024
61b6650 · Mar 1, 2024
Aug 23, 2020
Feb 23, 2024
Mar 24, 2022
Feb 23, 2024
Dec 29, 2023
Jan 19, 2024
Nov 8, 2018
Dec 29, 2023
Aug 16, 2020
Nov 15, 2023
Jul 20, 2020
Dec 29, 2023
Jun 25, 2012
Dec 29, 2023
Mar 1, 2024
Jan 3, 2024
Jun 22, 2020
Dec 29, 2023
Mar 1, 2024
Nov 11, 2019

Repository files navigation

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 version
1.x.x Node@6 & up
2.x.x Node@9 & up

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.