
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
@teamnovu/vue-cloudinary-image
Advanced tools
Responsive image component
Uses the image attributes srcSet and sizes to responsively display an an image from cloudinary.
Generates srcSet with a placeholder for lazyloading based on screen sizes passed in options and adjusts the sizes attribute depending on the screen size.
// yarn
yarn add @teamnovu/vue-cloudinary-image
// npm
npm i @teamnovu/vue-cloudinary-image
For vue2 use a version < v3.0.0
import CloudinaryImage from '@teamnovu/vue-cloudinary-image'
Vue.use(CloudinaryImage, {
cloudinaryBaseUrl: "https://res.cloudinary.com/<your-cloud-name>/image/upload/",
});
<CloudinaryImage src="/assets/image.jpg" />
Option | Default | Required | Type | Comment |
---|---|---|---|---|
cloudinaryBaseUrl | null | true | String | |
screenSizes | default screen sizes | false | Object | |
placeholderTransformation | null | false | String | Named Transformation used for the placeholder transformation |
Attribute | Default | Required | Type | Description |
---|---|---|---|---|
src | null | true | String | Relative path to image from cloudinaryAssetUrl |
quality | 85 | false | Number | Cloudinary Option |
blur | null | false | Number | Cloudinary Option |
crop | null | false | String | Cloudinary Option |
format | 'auto' | false | String | Cloudinary Option |
fallbackWidth | null | false | Number | If srcSet and sizes are not supported in the clients browser, this will be the fixed width of the image itself (not css width) |
aspectRatio | null | false | Number | If you set this attribute the component will ignore the placeholderDataUrl attribute and load the placeholder image from cloudinary because the aspect ratio would change between placeholder and the real image |
placeholderDataUrl | null | false | String | If this attribute is set all other placeholder options are ignored and this url is used as the placeholder source |
placeholderQuality | 30 | false | Number | Cloudinary Option |
placeholderWidth | 300 | false | Number | Cloudinary Option |
usePlaceholder | true | false | Boolean | If this attribute is set to false, no placeholder will be displayed and the original image will be rendered immediately |
zoom | undefined | false | String, Number | Zoom level |
sizes | undefined | false | String | Fixed sizes attribute for img tag |
transforms | undefined | false | String, Object | Additional, raw transformations |
<CloudinaryImage
src="/assets/image.jpg"
/>
FAQs
Simple Cloudinary Image component for vue
The npm package @teamnovu/vue-cloudinary-image receives a total of 14 weekly downloads. As such, @teamnovu/vue-cloudinary-image popularity was classified as not popular.
We found that @teamnovu/vue-cloudinary-image demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.