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

@moneygeek/ui-components

v1.122.0

Published

A set of base react based components for MoneyGeek

Downloads

426

Readme

MoneyGeek UI Components

npm

Usage

The MoneyGeek ui-components library is a set of react based DOM components aimed to increase the features of web pages and blog posts of the MoneyGeek websites. This library currently have available the next components to use:

  • Best Ranking
  • Button
  • Column
  • Expand/Collapse
  • Icon
  • OrderedList
  • Quote
  • Quote Widget
  • PremiumRanking

Installation

npm i -S @moneygeek/ui-components

The previous command would install these components in a NodeJS project and they could be used like in the following example.

import { Button } from "@moneygeek/ui-components";

<Button handleClick={() => alert("Clicked!")}>MG Button</Button> 

Development

Each component contains three different sections, the component, styles and the unit tests. For styling we are using the React based styled-components library, for unit tests we are using jest and eslint as the project linter.

Setup

If you are using Unix like systems to install the right version of NodeJS it is convenient to use the following command:

nvm install

If you are using Windows based systems you can download the last LTS version of NodeJS from its website (https://nodejs.org/en/).

Once NodeJS is installed you can start adding the project modules using the next command:

npm i

If you want to use yarn instead of npm you could install it using the next command:

npm i -g yarn

You could install the project libraries through yarn using the following command:

yarn

Bulding the Docz Development Bundle

To build the documentation of the existing components you need to run the following command:

npm run docz:dev

or

yarn docz:dev

This would generate a local website in the http://localhost:3000 address with the components that exist currently in the project.

Building the project and running all the test suite with linters included

To run the whole project Continuous Integration you can use the next command:

npm run build:ci

or

yarn build:ci

This would show you if there are any linter errors and whether all the unit tests passed successfully.

Running only the unit tests

If you only need to run the unit tests you could use the following command:

npm test

or

yarn test

Running the linters

If you only need to run the linter (Eslint) you can run it using the next command:

npm run lint

or

yarn lint

Building Parcel transpiler and Docz source code

For building Parcel and Docz transpilers you can use the following command:

npm run build

or

yarn build

Building Parcel

For building Parcel you could use the next command:

npm run parcel:build

or

yarn parcel:build

Building Docz

For building Docz you could use the following command:

npm run docz:build

or

yarn docz:build