question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

gatsby-transform-cloudinary plugin idea!

See original GitHub issue

Summary

I came across this Introducing intelligent responsive image breakpoints solutions blog post and since cloudinary offers a generous free tier I thought of a Gatsby plugin idea that takes your local images, upload them to Cloudinary and generates the responsive breakpoints and feed them to a Gatsby image also a remark transform plugin that scans the markdown for local images and does the same

Basic example

{
  resolve: `gatsby-transform-cloudinary`,
  options: {
   maxWidth: 1000,
   minWidth: 200,
   byteSteps: 20000,
  maxImages: 20,
  createDrived: false,
  apiKey: '<api_key>',
  apiSecret: '<api_secret>',
 }
}

Motivation

Since cloudinary offers a free tier and it can optimize images, users can benefit from this and they don’t need to host images themselves.

If there is a valid use case from other users I can build the plugin.

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:3
  • Comments:5 (4 by maintainers)

github_iconTop GitHub Comments

4reactions
DylanVanncommented, Jul 17, 2018

I’m finding locally processing images with Gatsby pretty impractical, adds a good 15 minutes to my build time, and I’ve only built one of several pages so far. Gatsby’s caching also hasn’t been super reliable.

This would be really useful!

Edit:

I need something working ASAP so I coded https://github.com/DylanVann/gatsby-transformer-cloudinary . It’s mostly using code from gatsby-transformer-sharp. Currently published under @dylanvann/gatsby-transformer-cloudinary since I don’t want to grab the name if someone else has a higher quality package.

Things that are broken:

  • Fixed images.
  • Fragments.

Good things:

  • Includes support for generating/converting videos.
  • Options for authentication.

I’m planning on using this for creating HTML5 video gifs.

2reactions
Khaledgarbayacommented, Jul 17, 2018

@DylanVann That’s great Maybe we can continue from there

Read more comments on GitHub >

github_iconTop Results From Across the Web

gatsby-transformer-cloudinary
The gatsby-transformer-cloudinary lets you upload local and remote assets to Cloudinary from within your Gatsby project. It also lets you add Gatsby Image ......
Read more >
Announcing two new Gatsby plugins from Cloudinary
The Gatsby-Transformer-Cloudinary plugin uploads your locally-stored images to Cloudinary, returns their data, and transforms those images into ...
Read more >
Gatsby ft. Valhalla on Twitter: " What's your favorite Gatsby ...
Transform local files into Cloudinary-managed assets for Gatsby sites.. Latest version: 4.3.0, last published: 6 days ago. Start using gatsby-transformer- ...
Read more >
Automatically Generate Social Sharing Images - Media Jams
By the end of this article, we want to be able to automatically generate social media images by using the Cloudinary transformation API....
Read more >
TwicPics vs. Cloudinary | Comparison
You should check out the documentation for a deep dive into all possible transformations. Cloudinary uses a similar URL-based transformation API. Like TwicPics, ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found