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

@makigas/genshi

v1.0.0-alpha.1

Published

An atomic design system

Downloads

7

Readme

Genshi

Genshi is the design system in use in makigas.es. Genshi is the japanese word for atom, because this project defines atomic components that can be used to build bigger user interfaces and layouts.

Genshi is currently under development. The components are being extracted from the website, and cleaned up as they are imported here. Version 1.0.0 will be released once Genshi is deployed to production.

I started working on Genshi because the original stylesheet of makigas.es was getting difficult to maintain, and code was being duplicated. Changes were difficult to make, so things like a dark mode or a new dashboard did not have a chance to be developed.

Currently, Genshi will focus on the components that I need right now in the website, including the CMS system, such as forms and data tables. Genshi is very opinionated about some things because it has born as a design system for a specific set of websites.

Genshi is not a general purpose web framework. I hope I don't accidentally create a general purpose web framework.

Features

  • CSS-only framework, with no JavaScript dependencies. (This will probably change in the future as some components that actually require JavaScript are imported.)
  • Uses BEM methodology. Class names are a little verbose, but Genshi is meant to be used with a component framework such as ViewComponent or Svelte, so the framework will write the class names for you.
  • Lightweight and without too much fluff.

Is it stable?

No. The API is currently under development. Some components may change class name. Some components may be split. Some mixins may be made. Some variables may change.

If you want to follow updates, watch the repo on GitHub so that you can get notified of new releases to see how the project advances.

Installation instructions

Genshi is available both in NPM and in the GitHub Packages registry.

npm i --save @makigas/genshi

Note that until 1.0.0 is reached, every alpha may have breaking changes. Reading the changelog is important, but also it is important to pin the version in use, and manually update, to prevent accidental layout breaks.

"dependencies": {
  "@makigas/genshi": "1.0.0-alpha.1",
}

If you are using a CSS preprocessor or bundler such as PostCSS, you should be able to just import Genshi by using the following import statement in your bundle file:

import "@makigas/genshi";

If your bundler does not support reading the style attribute from a package.json file, you can also use the full import path:

import "@makigas/genshi/dist/genshi.css";

Roadmap

  • Move existing components from github.com/makigas/makigas.es
  • Freeze a first alpha release
  • Create genshi-svelte and genshi-view-component and expose the components
  • Refactor github.com/makigas/makigas.es to use the new component libraries
  • Continue iterating reusable components
  • Once things look nice, deploy site to production and release genshi 1.0.0 on all libraries

Stack

Genshi is powered by SCSS, using the dart-scss dialect. I am making use of new features like @use and @forward, which are currently not present in other dialects. So far I don't have a strong opinion, but it is good to namespace things. Porting this to PostCSS could be a good experiment in the future, but it is currently not a priority because things work.

I am using Astro for the docs.

And I am using things like Stylelint and Prettier for the linting and formatting.

License

Genshi is published under the terms of the GNU Lesser Public License 3.0, or simply GNU LGPL 3.0. Make sure you read the public license before using this library in your project.