Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
vue-resized-image
Advanced tools
A Vue JS component that dynamically resizes, crops, and displays images
npm install --save vue-resized-image
import Vue from 'vue'
import { VueResizedImage } from 'vue-resized-image'
Vue.component('resized-image', VueResizedImage)
import { VueResizedImage } from 'vue-resized-image/dist/vue-resized-image.common'
Vue.component('resized-image', VueResizedImage)
<script src="vue.js"></script>
<script src="vue-resized-image/dist/vue-resized-image.browser.js"></script>
The plugin should be auto-installed. If not, you can install it manually with the instructions below.
Install all the components:
Vue.use(VueResizedImage)
Install all the components:
import Vue from 'vue'
import VueResizedImage from 'vue-resized-image/src'
Vue.use(VueResizedImage)
⚠️ You need to configure your bundler to compile .vue
files. More info in the official documentation.
This component wraps an img
tag to display an image dynamically resized in the browser making use of the canvas API. The width and height of the resized image can be defined. If the crop option is set to true the image is automatically centered within the defined dimensions and the original image aspect ratio is retained.
In app.js
import { VueResizedImage } 'vue-resized-image';
Vue.component('resized-image', VueResizedImage);
Use in another component:
<template>
<div id="single">
<h1 v-html="title"></h1>
<figure>
<resized-image :crop="true" :width="800" :height="400" :src="featured_image" :alt="title"/>
</figure>
<article v-html="content"></article>
</div>
</div>
</div>
</template>
The first time you create or clone your plugin, you need to install the default dependencies:
npm install
This will run webpack in watching mode and output the compiled files in the dist
folder.
npm run dev
While developping, you can follow the install instructions of your plugin and link it into the project that uses it.
In the plugin folder:
npm link
In the other project folder:
npm link vue-resized-image
This will install it in the dependencies as a symlink, so that it gets any modifications made to the plugin.
This will build the plugin into the dist
folder in production mode.
npm run build
FAQs
A Vue JS component that dynamically resizes, crops, and displays images
We found that vue-resized-image demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.