
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
nuxt3-notifications
Advanced tools
This is module @kyvg/vue3-notification for Nuxt3
nuxt3-notifications
as project dependency:npm install --save-dev nuxt3-notifications # npm
yarn add -D nuxt3-notifications # yarn classic
pnpm i -D nuxt3-notifications # pnpm
modules
section of your nuxt.config
:export default defineNuxtConfig({
modules: ['nuxt3-notifications'],
});
<!-- app.vue -->
<template>
<NuxtNotifications position="bottom left" :speed="500" />
</template>
<!-- page.vue/component.vue -->
<script setup>
const { notify } = useNotification();
function onClick() {
notify({
title: "Title",
text: "Hello notify!",
});
}
</script>
<template>
<button @click="onClick">Show notify</button>
</template>
export default defineNuxtConfig({
modules: ['nuxt3-notifications'],
nuxtNotifications: {
componentName: 'Foo' // 'foo-bar' or 'FooBar' for components of two or more words
},
});
pnpm install
pnpm dev:prepare
to generate type stubs.pnpm dev
to start playground in
development mode.v1.3.0
Notification
component via @nuxt/kit#addComponent
(3038b1c)FAQs
<img src="https:
The npm package nuxt3-notifications receives a total of 2,806 weekly downloads. As such, nuxt3-notifications popularity was classified as popular.
We found that nuxt3-notifications 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.