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

use-liquid-glass-ui

v1.0.9

Published

A lightweight glassmorphism UI component library for React using plain CSS.

Readme

🌊 liquid-glass-ui

Liquid Glass UI is a lightweight React component library that provides elegant glassmorphism (frosted glass) UI components using pure CSS, built to work seamlessly with React + Vite. No Tailwind. No external animation libraries. Just clean, modern UI.

NPM Version MIT License GitHub Stars


✨ Features

  • 🧊 Pure glassmorphism effect using plain CSS
  • ⚛️ Built for React (Vite compatible)
  • 🎨 Easily customizable with inline styles
  • 💡 Perfect for cards, modals, and UI blocks

📦 Installation

npm install use-liquid-glass-ui

or

yarn add use-liquid-glass-ui

🚀 Usage

import { GlassCard } from 'use-liquid-glass-ui'

function App() {
  return (
    <div style={{ padding: '40px' }}>
      <GlassCard style={{ width: '300px', height: '200px' }}>
        <h2>Hello, Glass World!</h2>
        <p>This is a frosted glass card.</p>
      </GlassCard>
    </div>
  )
}

🎛️ Props

<GlassCard />

| Prop | Type | Default | Description | |-----------|------------------------|---------|--------------------------------------| | children| React.ReactNode | – | Content inside the glass card | | style | React.CSSProperties | {} | Inline styles to customize the card |


🧪 Preview

Here's what a GlassCard looks like:

GlassCard Preview


🛠 Roadmap

  • [x] Basic glass card
  • [ ] Glass buttons
  • [ ] Glass modal component
  • [ ] Customization via props (blur, transparency, color)
  • [ ] Dark mode support

💻 Local Development (for contributors)

  1. Clone the repo:

    git clone https://github.com/tejasdhodi/liquid-glass-ui.git
    cd liquid-glass-ui
  2. Install dependencies:

    npm install
  3. Build the library:

    npm run build
  4. Link for local testing:

    npm link
    # Then inside another React project:
    npm link liquid-glass-ui

🤝 Contributing

Contributions are welcome! Here's how you can help:

  • ⭐ Star the repo
  • 📥 Open issues for bugs or ideas
  • 📢 Submit a pull request for new components or enhancements

Guidelines

  • Use plain CSS — no utility frameworks
  • Stick to consistent class naming (glass-*)
  • Keep components minimal and reusable

📄 License

This project is licensed under the MIT License.


🌐 Links


Made with ❤️ by Tejas Dhodi