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

anim8-core

v2.0.5

Published

Custom JavaScript animation library with modular effects

Readme

🎞️ anim8-core

A lightweight JavaScript animation library with built-in effects like fadeIn, slideIn, rotate, scrollReveal, gooeyNav, typewriterPulse, and more.

🔧 Built for simplicity, no dependencies — just plug & animate.


🚀 Installation

📦 NPM (For bundlers like Vite, Webpack, etc.)

npm install anim8-core
// ESM Import
import * as anim8 from "anim8-core";

// Usage
anim8.fadeIn(document.querySelector(".box"), {
  duration: 800,
  easing: "easeOutQuad",
});

🌐 CDN (Browser UMD)

<script src="https://unpkg.com/anim8-core@latest/dist/anim8.umd.js"></script>
<script>
  anim8Core.fadeIn(document.querySelector(".box"), { duration: 1000 });
</script>

✨ Animations Available

| Function | Description | | --------------------- | ------------------------------------ | | fadeIn(el) | Smooth fade-in effect | | slideIn(el, dir) | Slide in from left, right, etc. | | slideOut(el) | Slide out effect | | rotate(el) | Rotate element | | rotateScale(el) | Rotate + scale | | depthZoom(el) | Zoom with depth illusion | | blurIn(el) | Blur-in reveal | | scrollReveal(el) | Animate when element enters viewport | | scrollTrigger(el) | Scroll-based trigger | | gooeyNav(el) | Gooey effect for navigation | | typewriterPulse(el) | Typewriter + pulse effect | | stagger(el) | Stagger animations |


🚀 Quick Start

Import only the animations you need for optimal bundle size:

import { fadeIn, slideIn, rotate } from "anim8-core";

// Get your element
const element = document.querySelector(".my-element");

// Fade in with custom options
fadeIn(element, {
  duration: 800,
  delay: 200,
  easing: "easeOutExpo",
});

// Slide in from the left
slideIn(element, {
  direction: "left",
  duration: 600,
  distance: "100px",
});

// Rotate continuously
rotate(element, {
  speed: 2,
  duration: 3000,
});

⚙️ Configuration Options

Most animations accept these common parameters:

{
  duration: 1000,        // Animation duration in milliseconds
  delay: 0,              // Delay before animation starts
  easing: 'easeOutQuad', // Easing function name
  direction: 'top',      // Direction for slide animations
  onComplete: () => {}   // Callback function when animation ends
}

Available Easing Functions

  • linear
  • easeInQuad, easeOutQuad, easeInOutQuad
  • easeInCubic, easeOutCubic, easeInOutCubic
  • easeInExpo, easeOutExpo, easeInOutExpo
  • easeInBounce, easeOutBounce, easeInOutBounce

anim8-core/
├── src/
│   ├── core/           # Core animation utilities
│   ├── easings/        # Easing function library
│   └── effects/        # Individual animation effects
├── tests/              # Jest unit tests
├── dist/               # Production builds
├── index.js            # Main entry point
├── package.json
├── vite.config.js      # Development server config
├── jest.config.cjs     # Testing configuration
└── babel.config.json   # Babel preset configuration

🔧 Creating Custom Effects

Extend the library with your own animations:

  1. Create your effect file src/effects/myCustomEffect.js:
export default function myCustomEffect(element, options = {}) {
  const { duration = 1000, easing = "easeOutQuad" } = options;

  // Your custom animation logic here
  // Use requestAnimationFrame for smooth performance
}
  1. Export in main index.js:
export { default as myCustomEffect } from "./src/effects/myCustomEffect";
  1. Use your custom effect:
import { myCustomEffect } from "anim8-core";
myCustomEffect(element, { duration: 800 });

🌐 Browser Support

| Browser | Support | | --------------- | --------- | | Chrome | ✅ Latest | | Firefox | ✅ Latest | | Safari | ✅ Latest | | Edge | ✅ Latest | | Opera | ✅ Latest | | Android Browser | ✅ Latest | | iOS Safari | ✅ Latest |

Uses modern APIs like requestAnimationFrame for optimal performance


📄 API Reference

fadeIn(element, options)

Fades an element from transparent to opaque.

Parameters:

  • element (HTMLElement) - Target element
  • options (Object) - Configuration options
    • duration (number) - Animation duration (default: 1000ms)
    • delay (number) - Start delay (default: 0ms)
    • easing (string) - Easing function (default: 'easeOutQuad')

slideIn(element, options)

Slides an element into view from a specified direction.

Parameters:

  • element (HTMLElement) - Target element
  • options (Object) - Configuration options
    • direction (string) - Slide direction: 'top', 'bottom', 'left', 'right'
    • duration (number) - Animation duration (default: 1000ms)
    • distance (string) - Slide distance (default: '100px')

🤝 Contributing

We welcome contributions! Please see our Contributing Guidelines for details.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📝 License

This project is licensed under the MIT License - see the LICENSE file for details.


🙋‍♂️ Support


🌟 Show Your Support

If anim8-core helped you build something awesome, please ⭐ star the repository!


Made with ❤️ by Arsh Rai