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 🙏

© 2024 – Pkg Stats / Ryan Hefner

catalyst-design

v1.0.1

Published

Reusable Component library for Catalyst

Downloads

11

Readme

Catalyst Design System

Welcome to catalyst-design, a comprehensive UI library built for the CATalyst project. This design system is tailored for developers working on CAT exam preparation applications, providing robust, scalable, and aesthetically pleasing UI components.

Features

  • Rich Component Library: Equipped with various UI components designed specifically for CAT exam preparation interfaces.
  • React-Focused: Components are built to leverage React's capabilities for state management and reactivity.
  • Styled with Tailwind CSS: Utilize the utility-first classes of Tailwind CSS for rapid UI development and easy customization.
  • Optimized for Learning: Components are designed with a focus on readability, accessibility, and user engagement to enhance the learning experience.

Installation

To install the latest version of catalyst-design, run the following command in your project directory:

npm install catalyst-design

Tailwind CSS Configuration

Catalyst Design System requires Tailwind CSS. Add the following to your Tailwind CSS configuration to enable styling for the components:

module.exports = {
  content: [
    // ...
    "./node_modules/catalyst-design/**/*.{js,ts,jsx,tsx,mdx}"
  ],
  // ... rest of your Tailwind config
}

Usage

After installation, you can import and use the components in your React projects as follows:

import { Button, TextInput } from 'catalyst-design';

function ExamPrepComponent() {
  return (
    <div>
      <Button onClick={() => console.log('Starting practice test')}>
        Start Practice Test
      </Button>
      <TextInput placeholder="Search topics" onChange={(e) => console.log(e.target.value)} />
    </div>
  );
}

Available Components

Catalyst Design System includes the following components (this list may expand):

  • Button
  • TextInput
  • Card
  • Modal
  • Dropdown
  • ProgressBar
  • Timer
  • QuestionCard
  • AnswerOption
  • ResultSummary

For detailed documentation on each component, including props and usage examples, please refer to our official documentation site (link to be added).

Customization

Catalyst Design System is built with customization in mind. You can easily tailor the look and feel of the components to match your specific needs using Tailwind CSS classes or by extending the base styles.

Contributing

We welcome contributions from the community! If you have suggestions for improvements or new features that could enhance CAT exam preparation interfaces, please feel free to:

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

catalyst-design is open source and licensed under the MIT license.

Support

If you encounter any issues or have questions about using Catalyst Design System, please file an issue on our GitHub repository or contact our support team at [email protected].


Happy coding, and best of luck with your CAT exam preparation app!