
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@plutotcool/vue-freecaster
Advanced tools
Freecaster video player integration for vue.
pnpm install @plutotcool/vue-freecaster
The plugin loads the required freecaster scripts and globally
registers the FreecasterPlayer
component in your vue app.
import Vue from 'vue';
import { FreecasterPlugin } from '@plutotcool/vue-freecaster'
Vue.use(FreecasterPlugin)
The usePlayer
composable provide a reactive freecaster player instance
attached to an element ref.
<script setup lang="ts">
import { usePlayer } from '@plutotcool/vue-freecaster'
const { element, attributes, player } = usePlayer({
options: {
videoId: '...'
}
})
</script>
<template>
<div ref="element" v-bind="attributes"/>
</template>
The FreecasterPlayer
component is a wrapper around the usePlayer
composable.
It also provides models and slot props for the player state.
<script setup lang="ts">
import { FreecasterPlayer, type Player } from '@plutotcool/vue-freecaster'
const player = shallowRef<Player>()
const muted = ref(false)
const paused = ref(false)
const volume = ref(1)
const currentTime = ref(0)
const readyState = ref(0)
const fullscreen = ref(false)
</script>
<template>
<FreecasterPlayer
video-id="..."
v-model="player"
v-model:muted="muted"
v-model:paused="paused"
v-model:volume="volume"
v-model:current-time="currentTime"
v-model:ready-state="readyState"
v-model:fullscreen="fullscreen"
/>
</template>
<script setup lang="ts">
import { FreecasterPlayer } from '@plutotcool/vue-freecaster'
</script>
<template>
<FreecasterPlayer
video-id="..."
#default="{
player,
muted,
paused,
volume,
currentTime,
readyState,
fullscreen
}"
>
<!-- ... !-->
</FreecasterPlayer>
</template>
FAQs
Freecaster video player integration for vue
The npm package @plutotcool/vue-freecaster receives a total of 33 weekly downloads. As such, @plutotcool/vue-freecaster popularity was classified as not popular.
We found that @plutotcool/vue-freecaster demonstrated a healthy version release cadence and project activity because the last version was released less than 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 uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.