Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@marvr/storyblok-rich-text-vue-renderer
Advanced tools
Vue 3 plugin for rendering the rich-text content.
yarn add @marvr/storyblok-rich-text-vue-renderer@next
# or
npm install @marvr/storyblok-rich-text-vue-renderer@next
import { createApp } from 'vue';
import App from './App.vue';
import { plugin } from '@marvr/storyblok-rich-text-vue-renderer';
const app = createApp(App);
app.use(plugin(/* options */));
app.mount('#app');
<script lang="ts">
import { defineComponent, shallowReactive } from 'vue';
import { RichTextRenderer } from '@marvr/storyblok-rich-text-vue-renderer';
export default defineComponent({
components: {
RichTextRenderer
},
setup() {
const doc = shallowReactive(
// fetched document from Storyblok API
);
return { doc }
}
})
</script>
<template>
<RichTextRenderer :document="doc">
</template>
<script lang="ts">
import { defineComponent, shallowReactive } from 'vue';
import { useRenderer } from '@marvr/storyblok-rich-text-vue-renderer';
export default defineComponent({
components: {
RichTextRenderer
},
setup() {
const renderer = useRenderer();
const doc = shallowReactive(
// fetched document from Storyblok API
);
const renderedDocument = renderer.renderDocument(doc);
}
})
</script>
FAQs
Vue.js plugin for Storyblok's rich-text renderer
We found that @marvr/storyblok-rich-text-vue-renderer 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.