npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gulp-cloudinary-upload

v3.0.0

Published

A Gulp plugin to upload images to Cloudinary

Downloads

40

Readme

gulp-cloudinary-upload Build Status npm semantic-release

Batch upload images to Cloudinary

Install

npm install --save-dev gulp-cloudinary-upload

Only LTS and current releases of Node are supported.

Usage

Upload

Upload images to your Cloudinary cloud. The plugin uses the filename as public_id for easy retrieval.

const { src, dest } = require('gulp');
const cloudinaryUpload = require('gulp-cloudinary-upload');

function upload() {
  return src('src/images/*').pipe(
    cloudinaryUpload({
      config: {
        cloud_name: 'sample',
        api_key: '874837483274837',
        api_secret: 'a676b67565c6767a6767d6767f676fe1',
      },
    })
  );
}

exports.upload = upload;

Asset manifest

Write an asset manifest mapping the original images to Cloudinary's upload response. This data can be consumed by other plugins and is particularly useful in conjuction with templating languages.

const { src, dest } = require('gulp');
const cloudinaryUpload = require('gulp-cloudinary-upload');

function upload() {
  return src('src/images/*')
    .pipe(
      cloudinaryUpload({
        config: {
          cloud_name: 'sample',
          api_key: '874837483274837',
          api_secret: 'a676b67565c6767a6767d6767f676fe1',
        },
      })
    )
    .pipe(cloudinaryUpload.manifest())
    .pipe(dest('src/data'));
}

exports.upload = upload;

Example manifest, after uploading cat.png and dog.jpg:

{
  "cat.png": {
    "public_id": "cat",
    "version": 1528013000,
    "signature": "f420ed5e038d34777c4b0468750c3076860e89dd",
    "width": 1200,
    "height": 800,
    "format": "png",
    "resource_type": "image",
    "created_at": "2018-06-03T08:03:20Z",
    "tags": [],
    "bytes": 7890,
    "type": "upload",
    "etag": "3ccfc4c5eac57349ab827b5c9ac87d69",
    "placeholder": false,
    "url": "http://res.cloudinary.com/demo/image/upload/v1528013000/cat.png",
    "secure_url": "https://res.cloudinary.com/demo/image/upload/v1528013000/cat.png",
    "original_filename": "cat"
  },
  "dog.jpg": {
    "public_id": "dog",
    "version": 1528011592,
    "signature": "0a6a7e4d3e551d6701f5976f115600ee37d2271f",
    "width": 1920,
    "height": 1080,
    "format": "jpg",
    "resource_type": "image",
    "created_at": "2018-06-03T08:03:32Z",
    "tags": [],
    "bytes": 12045,
    "type": "upload",
    "placeholder": false,
    "url": "http://res.cloudinary.com/demo/image/upload/v1528011592/dog.jpg",
    "secure_url": "https://res.cloudinary.com/demo/image/upload/v1528011592/dog.jpg",
    "original_filename": "dog"
  }
}

By default, cloudinary-manifest.json will be replaced as a whole. To merge with an existing manifest, pass merge: true and the path to the manifest to cloudinaryUpload.manifest():

const { src, dest } = require('gulp');
const cloudinaryUpload = require('gulp-cloudinary-upload');

function upload() {
  return src('src/images/*')
    .pipe(
      cloudinaryUpload({
        config: {
          cloud_name: 'sample',
          api_key: '874837483274837',
          api_secret: 'a676b67565c6767a6767d6767f676fe1',
        },
      })
    )
    .pipe(
      cloudinaryUpload.manifest({
        path: 'src/data/cloudinary-manifest.json',
        merge: true,
      })
    )
    .pipe(dest('src/data'));
}

exports.upload = upload;

API

cloudinaryUpload([options])

options

Type: Object

config

Type: Object

An object containing your Cloudinary cloud_name, api_key and api_secret configuration parameters. This can be omitted when setting the CLOUDINARY_URL environment variable.

Example:

config: {
  cloud_name: 'sample',
  api_key: '874837483274837',
  api_secret: 'a676b67565c6767a6767d6767f676fe1'
}
params

Type: Object Default: { overwrite: false, use_filename: true, unique_filename: false }

Pass additional parameters to Cloudinary's upload method. Useful when creating eager transformations or tagging images.

Example:

params: {
  tags: ['cat', 'British Longhair', 'animal', '2018'];
}

cloudinaryUpload.manifest([options])

options

Type: Object

path

Type: String Default: cloudinary-manifest.json

Set the name or location of the manifest file.

merge

Type: Boolean Default: false

Merge with an existing manifest file. Use the path option to point to its location.

Testing

In order to run the tests locally, create a .env file with the CLOUDINARY_URL environment variable. Have a look at .env.example for an example.

Acknowledgements

The code for the cloudinaryUpload.manifest() method was largely borrowed from gulp-rev.

License

MIT © Thomas Vantuycom