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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nuvoui/core

v0.3.1

Published

NuvoUI Core SCSS Library

Downloads

179

Readme

NuvoUI

NuvoUI isn’t your next shiny, over-engineered UI library. It’s raw, lightweight, and built for one thing: delivering responsive, clean designs fast. If you’re tired of bloated frameworks slowing you down, welcome to NuvoUI.


Why NuvoUI?

Simple to start, grows with you.

We do not like prefixes. Why make a button like this

<button class="btn btn-lg btn-primary btn-round py-40" >...

when you can have, this

<button class="btn lg primary pill outline py-40" >...

But wait, there is more... lets make it fully responsive

<button class="btn lg primary pill outline 
    py-40
    py-20@sm
    py-80@lg
    outline" >...

This will be

  1. Use padding-left: 40px; and padding-right: 40px; as base
  2. Use padding-left: 20px; and padding-right: 20px; @ small screen
  3. Use padding-left: 80px; and padding-right: 80px; @ large screen

see this feels easy to us to remember ...


How to Use It

  1. Install via npm

    npm install @nuvoui/core
    - or
    pnpm install @nuvoui/core
  2. Import SASS

    @use '@nuvoui/core/src/styles/index.scss' as NuvoUI with (
        $column-count: 25,
        $color-dark: #1A1A1A,
        $color-warning: #F8AF08,
        $color-success: #34C759,
        ...
    );

Another example

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

will result in (psst: dont worry, we are using caching...)

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%);
  }
}

There are so many things to do, and we do need to make a documentation. Stay tuned...

working