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

boba

v1.7.2

Published

A lightweight, modular, CSS-only framework.

Downloads

270

Readme

boba

A lightweight, modular, CSS-only design framework.

npm npm CircleCI

Check out our documentation!

What is boba?

boba was born out of frustration with other CSS design frameworks.

  • Lightweight at just ~10KB gzipped
  • Modular; easily add or remove components or classes
  • Semantic class names to speed up development
  • Responsive, flexbox-based grid system
  • Vibrant, fresh color palette
  • No JavaScript

Is boba for you?

Of course it is!

Be it a smaller project or production-scale website, boba has all of the utilities and components that you need to get started quickly and efficiently. In fact, our entire website, including our documentation, is built entirely using boba's built-in classes.

Getting Started

Installation

boba can be installed manually, requested via CDN, or installed via NPM / yarn.

Check out our installation guide for more information.

Browser Support

Boba uses autoprefixer to automatically generate browser-specific prefixes needed to support the latest two versions of each browser.

| Browser | Supported Version | | :------ | :---------------: | | Internet Explorer | 10+ | | Edge | Last 2 | | Mozilla Firefox | Last 2 | | Google Chrome | Last 2 | | Safari | Last 2 | | Opera | Last 2 |

Although most of boba is compatible with Internet Explorer 10+, some HTML5 / CSS3 features may not be fully supported.

Building boba

You can compile your custom version of boba. Check out our documentation for more information.

git clone 
cd boba
npm install
gulp clean && gulp build --prod

Gulp Commands

  • gulp // Default task is watch
  • gulp watch // Runs a watch task to automatically rebuild files when changes are made
  • gulp clean // Deletes the dist folder
  • gulp build // Builds the dist folder
  • gulp sass // Compiles SASS
  • gulp nunjucks // Renders Nunjucks to HTML (docs only; requires the --docs flag)
  • gulp scripts // Compiles JavaScript files into one bundle (docs only; requires the --docs flag)
  • gulp showcase // Generates the showcase preview images (docs only; requires the --docs flag)

Gulp Parameters

  • --prod // Strips comments, removes sourcemaps, minifies files, builds all variations of CSS; this overrides all of the other parameters
  • --docs // Includes the documentation CSS / nunjuck processes in the build
  • --highlight // Applies syntax highlighting to code blocks in the documentation
  • --rebuildShowcase // Regenerates the showcase screenshots
  • --updateType // Accepts 'major', 'minor', and 'patch' as values; used to specify the documentation version target corresponding to an npm version increment
  • --nomin // Stops minification of files; useful for debugging
  • --buildall // Builds all versions of the framework