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

@nuvoui/core

v1.1.5

Published

NuvoUI is a human-friendly SCSS framework designed for simplicity, and modern responsive designs.

Downloads

200

Readme

NuvoUI

GitHub stars GitHub forks npm version

Welcome to NuvoUI 🎉

NuvoUI is a modern, human-friendly SCSS framework designed for developers who value simplicity, flexibility, and performance. Whether you're a seasoned CSS wizard or just getting started, NuvoUI makes building responsive, performant, and visually stunning web designs a breeze.

Why Choose NuvoUI?

Natural Language-Like Syntax
Write CSS that feels intuitive and effortless. Use classes like px-20 for padding or px-20@lg for responsive styles—all without breaking a sweat.

🔥 Fully Mixin-Based
Seamlessly integrate NuvoUI into your SCSS pipeline. Write reusable, modular, and clean SCSS code with our powerful mixins.

🚀 Optimized Animations
Define animations on the fly. NuvoUI caches animations intelligently, ensuring your code stays DRY (Don't Repeat Yourself).

Key Features

  • Dynamic Responsive Design: Use @lg, @sm, etc., to generate responsive styles with ease.
  • Flexible Animations: Create complex animations with simple mixins like @include NuvoUI.animate-bounce((horizontal: 3%, duration: 25s)).
  • Developer-First Approach: NuvoUI is built by developers for developers, offering the flexibility to build custom solutions effortlessly.
  • Simple Installation: Get started with a single command via npm.

Installation

To start using NuvoUI, install it via npm or pnpm:

npm instal @nuvoui/core 
 // or
pnpm install @nuvoui/core

Usage Examples

Example 1: Intuitive HTML Classes

<div class=" 
    px-40
    px-20@sm
    px-80@lg
">
  Responsive Padding Example
</div>

Example 2: Elegant SCSS Mixins

img:nth-child(1) {
    @include NuvoUI.mx-auto;
    @include NuvoUI.my(40);
    @include NuvoUI.animate-bounce((
        horizontal: 3%,
        duration: 25s,
    ));
}

Generated CSS:

img:nth-child(1) {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px !important;
  margin-bottom: 40px !important;
  animation: anim-bounce-0per-3per 25s ease-in-out infinite;
}

@keyframes anim-bounce-0per-3per {
  0% {
    transform: translateX(-0%) translateY(-3%);
  }
  50% {
    transform: translateX(0%) translateY(3%);
  }
  100% {
    transform: translateX(-0%) translateY(-3%);
  }
}

Join the NuvoUI Community 🌟

We welcome developers of all levels to contribute, suggest features, or just give us a star ⭐️ on GitHub. Let’s build something amazing together!

License

NuvoUI is open-source and licensed under the MIT License.

Feel free to use NuvoUI in your projects—commercial or personal. Just don't forget to give us a shoutout when possible!

working