npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@builtwithjavascript/vue-toast

v1.2.5

Published

**Lightweight toast notification plugin for Vue 3, styled with Tailwind CSS.** Supports grouped notifications, preset types (info, success, error, etc.), timeouts, and sticky messages.

Readme

vue-toast

Lightweight toast notification plugin for Vue 3, styled with Tailwind CSS.
Supports grouped notifications, preset types (info, success, error, etc.), timeouts, and sticky messages.

npm version License


🚀 Install

Install via npm:

npm i -D @builtwithjavascript/vue-toast

Then modify your main.ts:

// main.ts
import { createApp } from 'vue'
import App from './App.vue'

// Import the plugin
import { ToastPlugin } from '@builtwithjavascript/vue-toast'

createApp(App)
  .use(ToastPlugin as any)
  .mount('#app')

Example Usage

import { useToast } from '@builtwithjavascript/vue-toast'
import type { IToastParams } from '@builtwithjavascript/vue-toast'

const { showToast, toastPositions } = useToast()

const options: IToastParams = {
  group: 'top-right',
  type: 'normal',       // or 'success', 'error', etc.
  category: 'info',     // custom grouping
  message: 'Action completed!',
  sticky: false,
  timeout: 5000,        // in milliseconds
}

await showToast(options)

You can show multiple toasts in different positions using groups such as 'top-left', 'bottom-right', etc.

IMPORTANT: Tailwind Configuration Required

In order for Tailwind to recognize and include CSS classes used by this plugin, you must explicitly configure your Tailwind setup:

Tailwind v3

Add the plugin path to the content array in your tailwind.config.js:

// file: tailwind.config.js
module.exports = {
  content: [
    './index.html',
    './src/**/*.{vue,js,ts,jsx,tsx}',
    './node_modules/@builtwithjavascript/vue-toast/**/*.{vue,js,ts,jsx,tsx}' // <-- required
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}

Tailwind v4

In Tailwind v4, you must add a @source directive in your main CSS file to include external component paths:

/* file: src/main.css or src/style.css */
@import "tailwindcss";

/* Add this line to allow Tailwind to detect toast styles */
@source "../node_modules/@builtwithjavascript/vue-toast/**/*.{vue,js,ts,jsx,tsx}";

/* als need to add these as they are dynamic classes used by vue-toast */
@source inline("pointer-events-none pointer-events-auto");
@source inline("fixed");
@source inline("flex flex-shrink-0 inline-flex ");
@source inline("top-0 bottom-0 right-0 left-0");
@source inline("justify-end justify-center");
@source inline("rounded-md");
@source inline("shadow shadow-black shadow-md");
@source inline("sr-only text-sm font-medium");
@source inline("h-fit h-5 w-5 w-full max-w-sm");
@source inline("mt-2 ml-3 ml-auto pl-3 -mx-1.5 -my-1.5");
@source inline("p-1.5 p-2 p-3 p-4");
@source inline("cursor-pointer focus:outline-none focus:ring-2 focus:ring-offset-2");

Refer to the Tailwind v4 content configuration docs for more info.