
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@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 |
| loading | 'lazy' | false | String | Image loading property. Use loading="eager" to load the image immediately |
<CloudinaryImage
src="/assets/image.jpg"
/>
FAQs
Simple Cloudinary Image component for vue
We found that @teamnovu/vue-cloudinary-image demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.