
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy 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
The npm package vue-resized-image receives a total of 4 weekly downloads. As such, vue-resized-image popularity was classified as not popular.
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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.