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 🙏

© 2026 – Pkg Stats / Ryan Hefner

vue-transify

v1.3.0

Published

Animation library built on top of vue.js Transitiion component for fast and easy to use animations

Downloads

19

Readme

🌀 Vue Transify

Vue Transify is a lightweight animation library built on top of Vue’s native <Transition> component — making it powerful, easy to use, and fully customizable.

With flexible props and Quality Animations for fine-tuning, Vue Transify makes it effortless to bring your Vue components to life.


🖼️ Demo & Playground

Try out the animations now ! : Demo Playground


🚀 Features

  • ✅ Built directly on top of Vue’s core <Transition> component
  • ✅ Zero dependencies — just Vue
  • ✅ Simple prop-based customization (duration, delay, easing, etc.)
  • ✅ Works seamlessly with Vue 3
  • ✅ Lightweight — less than 2KB gzipped
  • ✅ Open for contributions & custom animation extensions

📦 Installation

# npm
npm install vue-transify

🧩 Basic Usage

-First Import the styles into you main.js


import { createApp } from 'vue'
import App from './App.vue'
import "vue-transify/dist/vue-transify.css";

createApp(App).mount('#app')

-Then you can import each animation as a component in your files and use it

<template>
  <div style="padding: 2rem">
    <button @click="show = !show">Toggle Fade</button>
    <!-- Use the component -->
    <Fade :duration="600" :appear="true">
      <p v-if="show">✨ Hello World from Fade Animation !</p>
    </Fade>
    <!-- Use these props to change the behavior of your animation -->
  </div>
</template>

<script setup>
import { ref } from 'vue'
// Import the component
import { Fade } from "vue-transify";
const show = ref(true)
</script>

⚙️ Props

-Library is fully prop based so you can customize the animations based on your need

| Prop | Type | Default | Description | | ------------- | ----------------- | --------- | ---------------------------------------------------------------------------------------------- | | appear | boolean | 'false' | If true animation will run on load | | duration | number | 500 | Duration of the animation in milliseconds. | | delay | number | 0 | Delay before the animation starts in milliseconds. | | easing | string | 'ease' | CSS easing function to control the transition curve(CSS acceptable timing functions). | | iteration | string , number | 5 | Number of time an animation would run based on CSS iteration-count(Only Attention Animations). |


🧩 Page Transitions V-1.2.0

Vue-Transify new update brgins route-based animations through a built in component called <PageTransitionHelper/> it's built on top of vue-router No extra setup no extra configs

<template>
  <!--This component replaces the <router-view> in your app  -->
  <PageTransitionHelper mode="out-in" :duration="1000" />
</template>
<script setup>
//You need to import the animation you want to use in the app
import {SlideInDown} from "vue-transify"
import { PageTransitionHelper } from "vue-transify";
</script>

And Boom ! Now you have animations on each route change

⚙️ Change What Animation Each Route Has

You can add animations to each route using the meta fields and the transition will automatically be added to your router-view.

import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '@/views/HomeView.vue'
import AboutView from '@/views/AboutView.vue'

const routes = [
  {
    path: '/',
    component: HomeView,
    meta: { transition: 'fade' }
  },
  {
    path: '/about',
    component: AboutView,
    meta: { transition: 'slideInUp' }
  }
]

export default createRouter({
  history: createWebHistory(),
  routes
})


🧑‍💻 Contributing

Contributions are welcome ! If you’d like to add a new animation, improve docs, or fix a bug:

  1. Fork the repository.
  2. Create your feature branch.
   git checkout -b feat/animation-name
  1. Commit your changes.
  2. Push to your brach.
  3. Open a PR

-💡 Before submitting, make sure your code follows the existing structure and passes any lint or build checks.Be sure to follow the naming convetion.

-All Vue files and animations use PascalCase -All Class prefixes use the camelCase


🌟 Support & Feedback

If you like Vue Transify, please consider supporting the project:

  • Star the repo on GitHub — it helps others discover the library
  • 🐞 Open an issue or suggest new features
  • 🧩 Share it with other Vue developers and the community

Your support helps keep the project active and growing 💚