
Research
/Security News
60 Malicious Ruby Gems Used in Targeted Credential Theft Campaign
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
@unovis/vue
Advanced tools
Modular data visualization framework for React, Angular, Svelte, Vue, and vanilla TypeScript or JavaScript
🟨 Unovis is a modular data visualization framework for React, Angular, Svelte, Vue and vanilla TypeScript or JavaScript.
@unovis/vue
provides Vue components for @unovis/ts
, which makes Unovis integration into a Vue
app much easier.
Learn more about Unovis on our website unovis.dev
npm install -P @unovis/ts @unovis/vue
<script setup lang="ts">
import { VisXYContainer, VisLine, VisAxis } from '@unovis/vue'
import { ref } from 'vue'
type DataRecord = { x: number; y: number }
const data = ref<DataRecord>([
{ x: 0, y: 0 },
{ x: 1, y: 2 },
{ x: 2, y: 1 },
])
const x = (d: DataRecord) => d.x
const y = (d: DataRecord) => d.y
</script>
<VisXYContainer :height="600">
<VisLine :data="data" :x="x" :y="y"/>
<VisAxis type="x"/>
<VisAxis type="y"/>
</VisXYContainer>
<script>
import { VisXYContainer, VisLine, VisAxis } from '@unovis/vue'
import { ref } from 'vue'
export let data = ref([
{ x: 0, y: 0 },
{ x: 1, y: 2 },
{ x: 2, y: 1 },
])
const x = d => d.x
const y = d => d.y
</script>
<VisXYContainer :height="600">
<VisLine :data="data" :x="x" :y="y"/>
<VisAxis type="x"/>
<VisAxis type="y"/>
</VisXYContainer>
Apache-2.0
FAQs
Modular data visualization framework for React, Angular, Svelte, Vue, and vanilla TypeScript or JavaScript
The npm package @unovis/vue receives a total of 18,639 weekly downloads. As such, @unovis/vue popularity was classified as popular.
We found that @unovis/vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.