Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
cloudinary-build-url
Advanced tools
cloudinary-build-url
(https://cloudinary-build-url.netlify.app)
The lighter URL builder API for Cloudinary with all features in TypeScript.
By default, f_auto
(auto format per browser) and q_auto
(auto quality per device) are enabled. And all the urls are generated as secured HTTPS format, unless user states otherwise.
yarn add cloudinary-build-url
or
npm i cloudinary-build-url
In order to start using the lib with TypeScript, please install @cld-apis/types
as devDependencies.
npm i -D @cld-apis/types
#OR
yarn add -D @cld-apis/types
import { buildUrl } from 'cloudinary-build-url'
const src = buildUrl('example', {
cloud: {
cloudName: 'demo',
},
transformations: {
resize: {
type: 'scale',
width: 500,
height: 500,
}
}
})
console.log(src)
Or
import { setConfig, buildUrl } from 'cloudinary-build-url'
// Set configuration for Cloudinary
setConfig({
cloudName: 'demo'
})
// Build URL
const src = buildUrl('example', {
transformations: {
resize: {
type: 'scale',
width: 500,
height: 500,
}
}
})
console.log(src)
import { buildVideoUrl } from 'cloudinary-build-url'
const src = buildVideoUrl('dog', {
cloud: {
cloudName: 'demo',
},
transformations: {
resize: {
type: 'scale',
width: 500,
height: 500,
}
}
})
console.log(src)
FAQs
Lighter Url generator for Cloudinary
We found that cloudinary-build-url demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.