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

roobie

v0.4.11

Published

A collection of CSS classes to keep you writing business logic in your HTML. Easily build maintainable web & mobile applications with 100s of pre-built CSS classes at your fingertips.

Downloads

14

Readme

Roobie

npm publish npm publish docs js scan

A collection of CSS classes to keep you writing business logic in your HTML. Easily build maintainable web & mobile applications with 100s of pre-built CSS classes at your fingertips. Never write boilerplate CSS classes with padding, margin, etc. ever again. Instead, favor utility CSS classes that are reusable. This makes HTML files bigger, but reduces code cleanup and stray code when removing content. Control all of your CSS variables from centralized themes for consistency throughout your web-apps and easily switch themes. Increase maintainability and development speed.

Modules

  • Themes: Use our pre-built themes or fork our template and create your own.
  • Layout: Create simple and responsive layouts with flexbox CSS helpers.
  • Utilities: CSS utilities to keep you where you belong, writing business logic in your HTML.
  • Animations: A variety of animations to deliver clean and dynamic content.
  • Components: Easy to use web components built with CSS & JavaScript.
  • Manipulation (Coming soon)
  • Icons (Coming soon)

Examples

100% width container with a centered row flexbox layout. The child elements each have a different font size.

<div class="div row center">
    <span class="fnts1">Roobie</span>
    <span class="fnts2">Roobie</span>
    <span class="fnts3">Roobie</span>
</div>

100% width container with a row flexbox layout. The child elements have a 2 intensity margin horizontally. The child elements each have 2 intensity padding.

<div class="div row row-spacer2">
    <span class="pad2">Roobie</span>
    <span class="pad2">Roobie</span>
    <span class="pad2">Roobie</span>
</div>

33% width container. The child elements each have a different vertical margin (top and bottom). The last child has a left border 2 intensity with blue 2 intensity.

<div class="div33">
    <span class="mrgv1">Roobie</span>
    <span class="mrgv2">Roobie</span>
    <span class="mrgv3 bdrl2 bdr-blue2">Roobie</span>
</div>

50% width container with a vertically centered and horizontally end column flexbox layout. The child elements each have a different font weight.

<div class="div50 col aln-center jst-end">
    <span class="fntw1">Roobie</span>
    <span class="fntw2">Roobie</span>
    <span class="fntw3">Roobie</span>
</div>

Theme variables snippet.

[theme="light"] {
    /*Base*/
    --primary: rgb(21, 206, 166);
    --secondary: var(--bg4);
    /*Status*/
    --success: rgba(81, 190, 73, 0.7);
    --warning: rgba(235, 119, 42, .7);
    --danger: rgba(248, 62, 52, .7);
    --info: rgba(152, 217, 243, .7);
    /*Shade 1*/
    --white: rgb(240, 240, 240);
    --black: rgb(20, 20, 20);
    --grey: rgb(199, 199, 199);
    --red: rgb(167, 32, 32);
    --orange: rgb(243, 162, 11);
    --yellow: rgb(221, 221, 25);
    --green: rgb(19, 172, 82);
    --blue: rgb(23, 23, 192);
    --indigo: rgb(117, 13, 117);
    --violet: rgb(184, 88, 184);
    /*Shade 2*/
    --white2: rgba(240, 240, 240, .7);
    --black2: rgba(20, 20, 20, .7);
    --grey2: rgba(199, 199, 199, .7);
    /*More shades omitted...*/
    /*Text*/
    --t1: rgb(20, 20, 20);
    --t2: rgb(35, 35, 35);
    --t3: rgb(50, 50, 50);
    --t4: rgb(65, 65, 65);
    --t5: rgb(80, 80, 80);
    --t6: rgb(95, 95, 95);
    /*Background*/
    --bg1: rgb(240, 240, 240);
    --bg2: rgb(230, 230, 230);
    --bg3: rgb(220, 220, 220);
    --bg4: rgb(210, 210, 210);
    --bg5: rgb(200, 200, 200);
    --bg6: rgb(190, 190, 190);
    /*And many more...*/
}

Feature Request

Submit new feature requests here.

Install

Install all necessary npm dependencies to build locally.

npm install

Package

Package builds all aspects of Roobie. Artifacts will be found in dist/.

npm run package

Serve Docs

Serve the docs with a simple Python HTTP server.

npm run docs