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

entropy-ds

v0.11.0

Published

Welcome to Entropy-ds, a powerful Design System component library built with React.js, Styled Components, Rollup.js, Storybook, TypeScript, Prettier, and ESLint. This library was bootstrapped using the [create-react-ds](https://github.com/fristaildg/creat

Downloads

27

Readme

Entropy-ds

Welcome to Entropy-ds, a powerful Design System component library built with React.js, Styled Components, Rollup.js, Storybook, TypeScript, Prettier, and ESLint. This library was bootstrapped using the create-react-ds template.

Features

  • A comprehensive collection of reusable UI components for building modern web applications.
  • Built with React.js, allowing for easy integration and customization.
  • Utilizes Styled Components for flexible and maintainable styling.
  • Bundled with Rollup.js to optimize the library size and improve performance.
  • Includes a Storybook setup for interactive component development and documentation.
  • Implements TypeScript for type safety and improved developer experience.
  • Integrated with Prettier for code formatting and ESLint for code linting.

Installation

To use Entropy-ds in your project, you can install it via npm or yarn:

npm install entropy-ds
# or
yarn add entropy-ds

Usage

To start using Entropy-ds components in your React application, you need to import them as follows:

import React from 'react';
import { Button, Input } from 'entropy-ds';

function App() {
  return (
    <div>
      <Button variant="primary">Click me!</Button>
      <Card>
        <Input placeholder="Enter your name" />
      </Card>
    </div>
  );
}

export default App;

Make sure to wrap your application with the appropriate theme provider and any other necessary setup. Refer to the documentation for further details on the specific components and configurations available in Entropy-ds.

Development

To contribute to the development of Entropy-ds, follow these steps:

  1. Clone the repository:

    git clone https://github.com/fristaildg/entropy-ds.git
  2. Install the dependencies:

    cd entropy-ds
    npm install
  3. Start the development server:

    npm run dev
  4. Open http://localhost:6006 in your browser to view the Storybook documentation and interact with the components.

  5. Modify the components in the src directory and create stories in the stories directory to showcase them in Storybook.

  6. Run tests:

    npm run test
  7. Build the library:

    npm run build
  8. Publish the library to npm:

    npm publish

License

This project is licensed under the MIT License.

Acknowledgments

Entropy-ds is built upon the fantastic work of the open-source community and the following libraries:

Contributing

Contributions are welcome! If you find any bugs or want to suggest improvements, please open an issue or submit a pull request. Make sure to follow the project's code of conduct.

Support

For any questions or assistance, feel free to reach out to the project maintainers via GitHub issues or the official documentation.

Happy coding with Entropy-ds!