gatsby-transform-cloudinary plugin idea!
See original GitHub issueSummary
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:
- Created 5 years ago
- Reactions:3
- Comments:5 (4 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
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:
Good things:
I’m planning on using this for creating HTML5 video gifs.
@DylanVann That’s great Maybe we can continue from there