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

skeletix

v0.2.9

Published

Skeletix is wireframing design system for rapid prototyping and boilerplate React based projects.

Readme

🦴 Skeletix

Skeletix is a lightweight wireframing design system built with React and TailwindCSS. It’s designed to speed up prototyping and serve as a boilerplate for new projects, including Next.js apps. With a minimal yet powerful set of pre-built components, skeletix empowers you to quickly create, customize, and iterate on designs.


🚀 Features

  • Minimalistic Components: Pre-styled components with TailwindCSS defaults.
  • Fully Customizable: Extend styles using Tailwind's utility classes.
  • Next.js-Ready: Compatible with Next.js server-side and client-side rendering.
  • Tailwind-Optimized: Works seamlessly with your TailwindCSS setup.
  • Rapid Prototyping: Perfect for wireframing or as a boilerplate for your next project.

📦 Installation

Step 1: Install skeletix

npm install skeletix

Or with Yarn:

yarn add skeletix

Step 2: Install Peer Dependencies

skeletix requires React, React DOM, TailwindCSS, and optionally Next.js. Ensure these are installed in your project:

npm install react react-dom tailwindcss

If you're using Next.js:

npm install next

Step 3: TailwindCSS Configuration

Ensure your tailwind.config.js includes skeletix in the content array:

module.exports = {
  content: [
    './src/**/*.{js,ts,jsx,tsx}',
    './node_modules/skeletix/**/*.{js,ts,jsx,tsx}'
  ],
  theme: {
    extend: {},
  },
  plugins: [],
};

TailwindCSS Integration with barestyles

skeletix components work best when the barestyles TailwindCSS plugin is installed. If barestyles is not detected, components will render without barestyles-specific utility classes, and you may see a warning in the console.

Installation

To use skeletix with barestyles:

  1. Install the required packages:
    npm install barestyles

🛠️ Usage

Basic Example

Start using skeletix components in your project:

import { Container, Button } from 'skeletix';

export default function App() {
  return (
    <Container className="p-4">
      <Button onClick={() => alert('Button clicked!')}>Click Me</Button>
    </Container>
  );
}

Customizing Components

Add your own TailwindCSS classes to customize the components:

<Button className="bg-blue-500 text-white hover:bg-blue-700">
  Custom Button
</Button>

⚡ Advanced Features

Next.js Integration

Some skeletix components use NextJS components, like next/Image. If you aren't using NextJs these components won't be available ... FOR NOW!

🌈 Styling and Customization

  • skeletix components are built with TailwindCSS defaults.
  • You can override styles by passing className props.
  • Add your own custom utilities in tailwind.config.js.

🛡️ Best Practices

  • Always include skeletix in your TailwindCSS content array.
  • Use the className prop to fully customize component styles.
  • Combine with barestyles for advanced TailwindCSS utilities.

🤝 Contributing

Contributions are welcome! If you have ideas for new components or improvements, feel free to open an issue or submit a pull request.

🌟 Acknowledgments

Special thanks to the open-source community and the creators of React, TailwindCSS, and Next.js for providing the tools that make projects like this possible.

🚧 Roadmap

🛠 Add NextJS components fallbacks for other frameworks, like astro 🛠 Add more components for layouts and interactivity. ✨ Support for dark mode customization. 🌍 Localization-ready components.

Happy prototyping with skeletix! 🎉