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

kyosei-bootstrap

v1.1.2

Published

kyosei theme based on bootstrap

Readme

Kyosei Bootstrap

Status

v1.1.0

Documentation

check here

Install

npm install kyosei-bootstrap

Usage

  1. Add kyosei-bootstrap.css & font-awesome.css
<link rel="stylesheet" href="node_modules/kyosei-bootstrap/dist/css/kyosei-bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
  1. Add Script tags
<!-- Main Scripts -->
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Sliders ( Optional ) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/wnumb/1.1.0/wNumb.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/10.1.0/nouislider.min.js"></script>
<!-- Select ( Optional ) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.4/js/bootstrap-select.min.js"></script>
<!-- Date Picker ( Optional ) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-daterangepicker/2.1.25/daterangepicker.min.js"></script>

What's included

kyosei-bootstrap/dist
├── css/
│   ├── kyosei-bootstrap.css
│   └── kyosei-bootstrap.min.css
└── js/
    └── bootstrap.min.js

What's new

switch

<input class="switch" name="switch1" type="checkbox">

also can be used as radio type

<input class="switch" name="switch2" type="radio">
<input class="switch" name="switch2" type="radio">
<input class="switch" name="switch2" type="radio">

btn-secondary

Dark theme button

<a href="#" class="btn btn-secondary">Secondary</a>

card

Same rule as the .card from bootstrap 4 beta

<div class="card">
    <img class="card-img-top" src="https://unsplash.it/600/400" alt="Card image cap">
    <div class="card-body">
        <h4 class="card-title">Card title</h4>
        <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
        <a href="#" class="btn btn-primary">Go somewhere</a>
    </div>
</div>

card-inverse

Background of card with colors.

<div class="card card-inverse card-secondary">
    <div class="card-body">
    <h4 class="card-title">Card Secondary</h4>
    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
    </div>
</div>

jumbotron-inverse

Dark background jumbotron with white text, add a class named jumbotron-inverse to origin jumbotron.

<div class="jumbotron jumbotron-inverse">
    <h1>Jumbotron-inverse</h1>
    <p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
    <p><a class="btn btn-primary btn-lg">Learn more</a></p>
</div>

footer

Add a class named footer.

<footer class="footer">
    <h1>Footer</h1>
</footer>

footer-inverse

Dark theme of footer, add footer-inverse to footer.

<footer class="footer footer-inverse">
    <h1>Footer</h1>
</footer>

footer-footer

The footer inside the footer, which is used to display copyright© information.

<footer class="footer">
    <div class="footer-footer">
        <p>
            Kyosei.ai all right reserved
        </p>
    </div>
</footer>

tools

Tools is used to present a collection of widget inside some div. First, you will need to put .tools inside your html file.

<div class="tools">

</div>

Add tool inside the tools

<div class="tools">
    <a class="tool">
        <span class="tool-icon"><i class="fa fa-heart" aria-hidden="true"></i></span>
        <span class="tool-name">Like</span>
    </a>
    <a class="tool">
        <span class="tool-icon"><i class="fa fa-share" aria-hidden="true"></i></span>
        <span class="tool-name">Share</span>
    </a>
</div>

tools-right

You can add tools-right class to the tools, which set text-align: center.

<div class="tools tools-right">

</div>

Reference

Bootstrap 3.3 NoUiSlider DateRangePicker BootstrapSelect