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

scorer-ui-kit

v2.6.3

Published

SCORER UI Components

Downloads

859

Readme

SCORER UI KIT LIBRARY

SCORER UI KIT is a UI components library created in react for faster web applications development.

Version 2

Our default branch is Version 2 release but we keep a legacy branch available. This version provides dark mode, the newest components and tools as well as been up to date with npm dependencies.

You can review online a React project example and test some of the components on storybook in the live page

https://future-standard.github.io/scorer-ui-kit

Enabling Dark and Light theme in your project

You can read an example about how to configure dark and light theme in the Dark Light Mode Usage document

Development

If you want to run the project follow the next steps

  • Clone repository
  git clone [email protected]:future-standard/scorer-ui-kit.git
  • Install with npm version 8 node 16 or above from the root folder
  npm install
  • Use npm dedupe to fix react-refresh difference between Storybook and Example project
  npm dedupe
  • If you want to run the example project, run library workspace first and then the example workspace in a different terminal
  // Terminal 1

  npm start --workspace=packages/ui-lib
  // Terminal 2

  npm start --workspace=packages/example
  • If you want to run the storybook
  // Terminal 3

  npm start --workspace=packages/storybook

Contributing

This is an open source project, if you are interested in participating please contact @atomworks or @JoshLipps.

Theres a list of issues and we recommend to pick one of the tagged Quick Wins as starter.

You can make a branch out the main, we don't have a strong preference in the naming of the branch but when submitting these changes please review the PR template.

Icons

The icons used in this UI Kit are licensed from Streamline Icons. We are able to provide a limited set in this kit with as per our license agreement. If you wish to extend the icons included in this kit yourself, we highly recommend checking those out if you want to keep a consistent style.

We tend to use the regular weighted icons and process them first to ungroup them. Then we use the above command to process them for inclusion in the UI Kit.

Image Credits

Some stock photos were used as placeholders in this UI Kit. These were sourced through Unsplash.com and we give credit for the following photographs and their photographers.

Photo by Van Thanh on Unsplash

License

The Scorer UI Kit is released under the MIT license.

Please note however that the icon set included in this software is included under license and remains property of Webalys LLC. These icons can be used only in the context of this open source project. For more information regarding this license, see Streamline Icons Premium License.

Release

  1. Update the version in package.json in this ui-lib folder and commit it. (this can done on a branch and then merged)
  2. Add a release tag with the following format: vXX.XX.XX or vXX.XX.XX-beta.x(for beta) - this should match the package.json version
  3. Push the tag to Github (this should cause the release)
// Updating to v1.5.2

  git commit -m "Bump 1.5.2"
  grep version package.json
  ~  "version": "1.5.2",
  git tag v1.5.2
  git push origin v1.5.2