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

npm-ripple-wave-bg

v1.0.6

Published

Reusable ripple background

Readme

npm-ripple-wave-bg

A lightweight, customizable ripple background component for React applications. Create beautiful interactive water ripple effects dynamically.


📦 Installation

Install the package via NPM:

npm install npm-ripple-wave-bg

🛠 Usage

Import and use the RippleBackground component in your React project:

Basic Example

import React from 'react'
import RippleBackground from 'npm-ripple-wave-bg'

const App = () => {
  return (
    <div
      style={{
        position: 'relative',
        height: '100vh',
        display: 'flex',
        justifyContent: 'center',
        alignItems: 'center',
        backgroundColor: '#1e1e2f',
        overflow: 'hidden',
      }}
    >
      {/* The ripple background */}
      <RippleBackground />
      <div
        style={{
          textAlign: 'center',
          color: 'white',
          fontFamily: 'Arial, sans-serif',
          background: 'rgba(0, 0, 0, 0.3)',
          padding: '20px 40px',
          borderRadius: '12px',
          boxShadow: '0px 10px 20px rgba(0, 0, 0, 0.3)',
          backdropFilter: 'blur(10px)',
        }}
      >
        <h1>Welcome to the Ripple Effect</h1>
        <p>Experience smooth and interactive ripples in the background.</p>
      </div>
    </div>
  )
}

export default App

🎨 Customization

The RippleBackground component supports several props for customization:

| Prop Name | Type | Default Value | Description | | ----------------- | ------ | ---------------------------- | -------------------------------- | | numWaves | number | 4 | Number of background wave layers | | rippleSize | number | 1.5 | Controls the size of each ripple | | backgroundColor | string | 'rgba(0, 0, 0, 0.1)' | Sets the background color | | waveColor | string | 'rgba(136, 172, 224, 0.3)' | Color of the waves | | zIndex | number | 0 | Z-index of the ripple background | | waveSpeed | number | 800 | Speed of the wave animations |


📌 Why Use This Package?

  • Minimalistic: No external CSS, easy to integrate
  • Highly customizable: Modify colors, speeds, sizes, and more
  • Smooth performance: Optimized for smooth animations
  • Lightweight: No heavy dependencies

🛠 Development & Contribution

If you’d like to contribute:

  1. Clone the repo:
    git clone https://github.com/your-username/npm-ripple-wave-bg.git
  2. Navigate to the project:
    cd npm-ripple-wave-bg
  3. Install dependencies:
    npm install
  4. Run the project locally:
    npm start

📄 License

ISC License © 2025 Amina Khan


Support & Feedback

If you like this package, give it a ⭐ on GitHub!
For issues, report them here.

For any inquiries or feedback, please reach out to:

Amina Khan
[email protected] | GitHub

Enjoy smooth and interactive ripples! 🌊🚀