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

nextab

v1.0.0

Published

A modern, accessible CSS framework with dark mode and RTL support

Readme

NexTab Framework

A modern, accessible CSS framework with dark mode and RTL support.

npm version Build Status npm bundle size License

Features

  • Modern Design System: Clean, consistent, and customizable
  • Dark Mode: Built-in dark mode with system preference detection
  • RTL Support: Full right-to-left language support
  • Accessibility: WCAG 2.1 compliant with ARIA support
  • Responsive: Mobile-first approach with customizable breakpoints
  • Tree-Shakable: Import only what you need
  • Customizable: Easy theming with CSS custom properties
  • Modular: Use components independently
  • Performance: Optimized for modern browsers

Installation

npm install nextab-framework

Or use a CDN:

<!-- CSS -->
<link rel="stylesheet" href="https://unpkg.com/nextab-framework/dist/css/framework.min.css">

<!-- JavaScript -->
<script src="https://unpkg.com/nextab-framework/dist/js/framework.min.js"></script>

Quick Start

  1. Include the CSS and JavaScript:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>NexTab Example</title>
    <link rel="stylesheet" href="path/to/framework.min.css">
</head>
<body>
    <!-- Your content here -->
    <script src="path/to/framework.min.js"></script>
</body>
</html>
  1. Start using components:
<!-- Grid System -->
<div class="container">
    <div class="row">
        <div class="col-md-6">Column 1</div>
        <div class="col-md-6">Column 2</div>
    </div>
</div>

<!-- Buttons -->
<button class="btn btn-primary">Primary Button</button>
<button class="btn btn-secondary">Secondary Button</button>

<!-- Cards -->
<div class="card">
    <div class="card-body">
        <h5 class="card-title">Card Title</h5>
        <p class="card-text">Card content goes here.</p>
    </div>
</div>

Using with SCSS

// Import everything
@import "nextab/scss/framework";

// Or import specific components
@import "nextab/scss/components/buttons";
@import "nextab/scss/components/cards";

Dark Mode

Enable dark mode with a simple data attribute:

<html data-theme="dark">

Or use the theme toggle:

<button class="theme-toggle" data-theme-toggle>
    Toggle Theme
</button>

RTL Support

Add the dir attribute to enable RTL:

<html dir="rtl">

Browser Support

  • Chrome (last 2 versions)
  • Firefox (last 2 versions)
  • Safari (last 2 versions)
  • Edge (last 2 versions)
  • iOS (12+)
  • Android (5.0+)

Development

  1. Clone the repository:
git clone https://github.com/yourusername/nextab.git
cd nextab
  1. Install dependencies:
npm install
  1. Start development server:
npm run dev
  1. Build for production:
npm run build

Documentation

Visit our documentation site for detailed usage instructions and examples.

Contributing

  1. Fork the repository
  2. Create your feature branch: git checkout -b feature/my-feature
  3. Commit your changes: git commit -m 'Add my feature'
  4. Push to the branch: git push origin feature/my-feature
  5. Submit a pull request

License

MIT [Your Name]