
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@zapier/builder-plugin-cloudinary
Advanced tools
From the organization settings page in Builder, click the edit button next to "Plugins", click "Add plugin", enter "@zapier/builder-plugin-cloudinary", then click "Save".
After adding the plugin in Builder, it can be used in a component by defining
an input with type: 'cloudinaryImage
.
Builder.registerComponent(Image, {
name: 'Image',
inputs: [
{
name: 'src',
type: 'cloudinaryImage',
},
],
});
The value passed to the component is a URL that can be used with a
standard HTML <img>
element. When an image is selected from the Cloudinary
media library, some default transformation parameters (f_auto
, q_auto
) are
automatically added to the URL.
function Image(props) {
return <img src={props.src} />;
}
When opening the media library for the first time, you will be prompted to enter a Cloudinary cloud name and API key. These can be changed at anytime by clicking the settings button next to the "Media Library" button.
FAQs
Cloudinary media library widget for Builder.io
The npm package @zapier/builder-plugin-cloudinary receives a total of 7 weekly downloads. As such, @zapier/builder-plugin-cloudinary popularity was classified as not popular.
We found that @zapier/builder-plugin-cloudinary demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 186 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.