Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
vue3-word-cloud
Advanced tools
Generates a cloud out of the words.
Support Vue 3
npm i vue3-word-cloud
Register the component globally.
import Vue from 'vue';
import Vue3WordCloud from 'vue3-word-cloud';
Vue.component(Vue3WordCloud.name, VueWordCloud);
or
Register the component in the scope of another component.
import Vue3WordCloud from 'vue3-word-cloud';
export default {
components: {
[Vue3WordCloud.name]: Vue3WordCloud,
},
};
<vue3-word-cloud
style="
height: 480px;
width: 640px;
"
:words="[['romance', 19], ['horror', 3], ['fantasy', 7], ['adventure', 3]]"
:color="([, weight]) => weight > 10 ? 'DeepPink' : weight > 5 ? 'RoyalBlue' : 'Indigo'"
font-family="Roboto"
/>
Pass custom renderer for the words.
<vue3-word-cloud :words="words">
<template slot-scope="{text, weight, word}">
<div :title="weight" style="cursor: pointer;" @click="onWordClick(word)">
{{ text }}
</div>
</template>
</vue3-word-cloud>
property | type | default | description |
---|---|---|---|
animation-duration | Number | 1000 | The duration of the animation. |
animation-easing | String | 'ease' | The easing of the animation. |
animation-overlap | Number | 1 | The overlap of the animation. Set the value to 1 to animate words all at once. Set the value to 0 to animate words one by one. The value 5 has the same effect as the value 1/5 . |
color | [String, Function] | 'Black' | The default color for each word. |
create-canvas | Function | * | Creates a new Canvas instance. |
create-worker | Function | * | Creates a new Worker instance. |
enter-animation | [Object, String] | * | The enter animation. |
font-family | [String, Function] | 'serif' | The default font family for each word. |
font-size-ratio | Number | 0 | The font size ratio between the words. For example, if the value is 5 , then the largest word will be 5 times larger than the smallest one. The value 5 has the same effect as the value 1/5 . |
font-style | [String, Function] | 'normal' | The default font style for each word. |
font-variant | [String, Function] | 'normal' | The default font variant for each word. |
font-weight | [String, Function] | 'normal' | The default font weight for each word. |
leave-animation | [Object, String] | * | The leave animation. |
load-font | Function | * | Loads the font. |
rotation-unit | [String, Function] | 'turn' | The default rotation unit for each word. Possible values are 'turn' , 'deg' and 'rad' . |
rotation | [Number, Function] | 0 | The default rotation for each word. |
spacing | Number | 0 | The spacing between the words. The value is relative to the font size. |
text | [String, Function] | '' | The default text for each word. |
weight | [Number, Function] | 1 | The default weight for each word. |
words | Array | [] | The words to place into the cloud. A value of the array could be either an object, an array or a string. If the value is an object, it will be resolved to {text, weight, rotation, rotationUnit, fontFamily, fontStyle, fontVariant, fontWeight, color} .If the value is an array, it will be resolved to [text, weight] .If the value is a string, it will be resolved to text . |
let enterAnimation = {opacity: 0};
let leaveAnimation = {opacity: 0};
Make more complex animations.
let enterAnimation = {
opacity: 0,
transform: 'scale3d(0.3,0.3,0.3)'
};
Use classes for CSS animations.
let enterAnimation = 'animated bounceIn';
let leaveAnimation = 'animated hinge';
let createCanvas = function() {
return document.createElement('canvas');
};
let loadFont = function(fontFamily, fontStyle, fontWeight, text) {
return document.fonts.load([fontStyle, fontWeight, '1px', fontFamily].join(' '), text);
};
Provide custom loadFont
function to support older browsers.
import FontFaceObserver from 'fontfaceobserver';
let loadFont = function(family, style, weight, text) {
return (new FontFaceObserver(family, {style, weight})).load(text);
};
let createWorker = function(code) {
return new Worker(URL.createObjectURL(new Blob([code])));
};
event | description |
---|---|
update:progress | The current progress of the cloud words computation. |
FAQs
Generates a cloud out of the words.
The npm package vue3-word-cloud receives a total of 55 weekly downloads. As such, vue3-word-cloud popularity was classified as not popular.
We found that vue3-word-cloud 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.