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

vumate

v1.0.2

Published

Librería ligera para agregar animaciones basadas en scroll a Vue 3 y Nuxt 3 usando Intersection Observer.

Readme

VUMATE - Animations with Vue 3 and Nuxt 3 🚀

VUMATE is a lightweight library for adding scroll-based animations to Vue 3 and Nuxt 3 projects using Intersection Observer.

📦 Installation

Install the library using npm:

npm install vumate

🚀 Basic Usage

Import vumate into your component and define animations:

<script setup>
import vumate from "vumate";

vumate([
  {
    selector: ".fade-in",
    animation: {
      transform: ["translateY(20px)", "translateY(0)"],
    },
  },
  {
    selector: ".slide-left",
    animation: {
      transform: ["translateX(-100px)", "translateX(0)"],
    },
  }
]);
</script>

<template>
  <div>
    <h1 class="fade-in">Hello, VUMATE!</h1>
    <p class="slide-left">This text slides in from the left.</p>
  </div>
</template>

✨ Animation Attributes

| Attribute | Description | Default Value | |------------|----------------------------------------------------------------------------|------------------------| | transform| Defines the type of animation transformation | ["none", "none"] | | opacity | Defines the element's opacity during the animation | ["1", "1"] | | duration | Duration of the animation in seconds | 0.8 | | easing | Type of easing for the animation | "ease-in-out" | | rebounds | Bounce configuration (count and axis) for the animation | { reboundCount: 0, axis: "Y" } |

Attribute Explanation

  • transform: Used to apply transformations such as scale, translate, and others. If not provided, none is used by default, meaning no transformation is applied.

  • opacity: Controls the visibility of the element. The default value is 1, meaning fully visible.

  • duration: Determines how long the animation takes to complete. If not specified, 0.8 seconds is used.

  • easing: Controls the animation speed curve. The default ease-in-out creates a smooth start and end.

  • rebounds: Controls the bounce behavior of the animation.

    • reboundCount: Number of bounces the animation should have. The default is 0, meaning no bounce.
    • axis: The axis on which the bounce occurs. The default is "Y", meaning vertical bounce. It can also be set to "X" for a horizontal bounce.

🎯 Customization

You can adjust duration, bounce, and easing for each animation:

vumate([
  {
    selector: ".zoom-in",
    animation: {
      transform: ["scale(0.5)", "scale(1)"],
      opacity: ["0", "1"],
      duration: 1.2,
      easing: "ease-in-out",
      rebounds:{
        reboundCount: 3,
        axis: "Y",
      }
    },
  }
]);

🎨 Available Classes

You can add animations to any element using predefined classes:

<h2 class="fade-in">I'm an animated title</h2>
<div class="slide-left">I slide in from the left</div>
<p class="zoom-in">I zoom in on appearance</p>

🛠 Requirements

  • Vue 3 or Nuxt 3
  • Intersection Observer support (compatible with all modern browsers)

VUMATE

📍 Contributions

If you want to contribute to VUMATE, feel free to open a Pull Request or submit an Issue in the repository.

📜 License

MIT © Julio Almiro