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

cadence-design-system

v0.12.0-beta

Published

Design system and component library for the Cadence design system. Built and developed by Downbeat Academy to accelerate the development of new applications and products empower music education.

Downloads

10

Readme

Cadence Design System

Design system and component library for the Cadence design system. Built and developed by Downbeat Academy to accelerate the development of new applications and products empower music education.

Find out more information about Downbeat Academy here.

See usage and documentation in the Cadence Storybook instance.

Built with

Beta status

This library is still in Beta, star it on Github to stay informed on updates. Here's the current status and tasks that are in progress to make this library production-ready for Downbeat Academy.

  • Inputs and data handling
  • Checkbox and radio buttons
  • Status badge
  • Music notation rendering
  • Feedback and notifications
  • Button grouping

Cadence Design System is open source, if you want to contribute reach out! Downbeat Academy and the Cadence Design System are labors of love for me, but I hope to expand the footprint, content, and product offering of Downbeat Academy to reach more musicians, students, and educators to help them advance as creators.

Installing & Usage

Install using your package manager of choice.

// yarn
 yarn add cadence-design-system

 // npm
 npm install cadence-design-system

Import individual components as named imports:

import { Button, Flex, Paragraph } from 'cadence-design-system'

export default function Page() {
    return (
        <Flex>
            <Paragraph>This is a button.</Paragraph>
            <Button onClick={() => console.log('You clicked the button!')}>Click the button</Button>
        </Flex>
    )
}

Styling

Cadence Design System uses Stitches by default for styling and is currently tied to Downbeat Academy brand foundations and styling by default. I'm working to make the styling more library-agnostic and allow custom styling of components.