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

@gargrave/velcrostrip

v0.3.2

Published

A modest, general-use React UI component library

Downloads

19

Readme

Velcrostrip

Velcrostrip is a general use React component library. The goal is for it to include most of the "general" stuff you would need in any typical frontend application (and then maybe a bunch of extra goodies, too).

You can see more or less everything in action in the Styleguide docs. This will be updated each time I release any version bump.

It is based on one of my favorite raw CSS libraries, Shoelace. I love Shoelace, but unfortunately its build/customization process in older versions aws a bit obtuse, so I decided I would take its inspiration and make a React version. The basic color schemes, designs, and components will generally be pretty similar, although I am not intending for it to be a 1:1 clone, and I may not include all of its components. We'll see...

For better or worse, I am also using Bootstrap 4 as inspiration in extending some components past what Shoelace provides (particularly with the ARIA stuff, which Bootstrap is very good at).

Other shout-outs:

Usage

The disclaimer:

  • I would not recommend using this in any production setting right now. This is mostly just a fun side project for me, and I make no guarantee as to how much time (if any) I will have to continue development, fix bugs, add new features, and all of that good stuff. As much as I enjoy it, my time is very limited, and side projects are the first thing to get pushed aside.
  • To expand on the point above, most of these steps are what should work, but I also don't have time for full regression testing when I do a release, so again: no guarantees here. YMMV, buyer beware, use at your own risk, and all of that good stuff.

  • Install
    • yarn add @gargrave/velcrostrip
  • Use
    • Everything is exported both top-level and directly. So you can import components two ways:
      • import { Button } from '@gargrave/velcrostrip, or
      • import { Button } from 'packages/velcrostrip/src/Button'
      • The difference of course is that the first will import the entire library as soon as you import a single component, and it might bloat your build a little bit.

At that point, you are ready to use the Button component. TypeScript types are included for all components, so you should get good completion for props and such, but you can also check out the styleguide with yarn styleguide, which will have examples covering almost everything.

This is a major work-in-progress, and will be for the foreseeable future. The components that are currently available are listed below.

  • Alert
  • Button
  • Card
  • Loader