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

jizy-basics

v1.1.0

Published

Shared CSS basics (normalize/reset + base utilities) and the shared front layer for the jizy/callisto ecosystem

Readme

jizy-basics

Shared CSS basics for the jizy / callisto ecosystem — a theme-independent normalize/reset plus a small set of var-free base utilities — and the shared front layer JS. Extracted from callisto-installer so sites consume a prebuilt artifact instead of recompiling the same boilerplate on every build.

What's in it

| Path | Role | |---|---| | dist/css/jizy-basics.min.css | Prebuilt, minified normalize + base utilities (.sr-only, .clearfix, base element resets). Theme-independent — identical for every site. Bundle this into the per-site front bundle. | | lib/less/ | Importable LESS source: normalize/*, base.less, mixins.less (+ mixins/*, incl. the icon-font icons.less), variables.yml. Consumed by the callisto callisto:less pipeline when an app must compile (e.g. admin) and for the theme mixins/default vars. | | lib/less/plugins/<name>/ | Opt-in, theme-independent CSS plug source, selected the same way as the JS plugins (site plugs:). Each plug ships whichever of structure.less / screen.less / mobile.less it needs, plus an optional tokens.less that maps its @vars (from installer/template/<name>/css/core/variables.yml) to runtime-overridable --jizy-<name>-* custom properties. Examples: html-lists, html-buttons / html-buttons-group (the .btn primitives + .btn-group, themed via --jizy-btn-*), messaging, nav-toggler, appfront, the tmpl-footer-* templates. | | lib/js/front.js | The shared front layer (JiZy.Template response dispatcher + base-url setup). Raw source, concatenated into the per-site jizy-front.js bundle by the callisto jizy-builder. | | lib/js/plugins/<name>/<name>.js | Opt-in vanilla front plugins, bundled right after front.js when the site lists <name> in its plugs:. nav-toggler (mobile menu, exposes JiZy.navToggler()); browser (browser-compatibility check, auto-runs at load, pairs with the browser CSS plug). |

Two ways to consume

  1. Prebuilt CSS (front): pull dist/css/jizy-basics.min.css straight into the front bundle — no LESS compile needed.
  2. LESS source (admin / theme): @import from lib/less/ so the reset, the mixins (.screenReadersOnly(), .clearfix(), theming helpers) and the default variables compile alongside the per-site theme.

Build

npm install
npm run jpack:dist        # → dist/css/jizy-basics.min.css

dist/ is committed (the published artifact). Rebuild after editing lib/.

Notes

  • CSS variables follow the --jizy-{name} convention; theming is done with CSS custom properties, not generated LESS variables.
  • mixins/icons.less deliberately does not live here — icon-font glyph mixins belong to the callisto icon-font pipeline.