
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@gun-vue/components
Advanced tools
GitHub (@gun-vue/components) • npm • Docs
Vue 3 Single-File Components (SFC) providing ready-to-use UI powered by UnoCSS, Pug templates, and your feature’s composables.
This code is part of Gun-Vue: The Peer-to-Peer Web App Toolkit.
Gun-Vue is distributed as a regular NPM package and may be used in any Vue 3 project.
pnpm init vue@latest
cd <your-project-name>
pnpm install
pnpm run dev
@gun-vue/components
package and start the development processpnpm i @gun-vue/components
pnpm run dev
<script setup>
import "@gun-vue/components/dist/style.css";
import { UserHome } from "@gun-vue/components";
</script>
<template>
<div>
<UserHome></UserHome>
</div>
</template>
main.js
file and use all the components straight away.import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
import "./assets/main.css";
import "@gun-vue/components/style.css";
import { GunVuePlugin } from "@gun-vue/components";
const app = createApp(App);
app.use(router);
app.use(GunVuePlugin);
app.mount("#app");
So you can use any of the Gun-Vue components in any SFC in your app.
<template>
<ChatRoom />
</template>
Most of the Gun-Vue components rely on realtime communication with the GUN database. This means we should prevent them from running during the build process to be executed only on the client. Please use client-only
and Suspense
with async components to have client-side components in a server side render environment.
<script setup async>
import "@gun-vue/components/dist/style.css";
const { UserHome } = await import("@gun-vue/components");
</script>
<template>
<div>
<UserHome></UserHome>
</div>
</template>
<ClientOnly>
<Suspense>
<Home></Home>
</Suspense>
</ClientOnly>
FAQs
Unknown package
We found that @gun-vue/components demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.