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

nrd.js

v1.4.0

Published

A little react component library created by lnardon

Readme

NRD.js

A React Component Library with all the most used components for Front-End Development created by lnardon

NPM JavaScript Style Guide

You can use this React Component Library to optimize your front-end development or even give it a more complete feel to your functional mockups.

For now all the components have a minimalistic black/white style but in the future new designs will be created

Available Components:

Available Hooks:

Install

npm install nrd.js

Usage

import React from 'react'

import { LoginForm } from 'nrd.js'

const App = () => {
  return <LoginForm />
}

License

Any Contribution is Welcome !!! MIT © lnardon

DOCUMENTATION

Components

Alert

| Prop | Description | value/format | | :------ | :-------------- | :----------- | | message | Alert's Message | string |

ContactForm

| Prop | Description | value/format | | :---- | :------------------------------------------------------------------------ | :----------- | | url | URL of the server to make the POST request with the username and password | string | | title | Title to be displayed above the form | string |

ExpandableArea

| Prop | Description | value/format | | :-------- | :------------------------------------------ | :----------- | | title | Title of the expandalble area | string | | content | Content hidden by the expandalble area | string | | getStatus | Callback to get the status expandalble area | function |

InputField

| Prop | Description | value/format | | :--------------- | :---------------------------------------------------------------- | :----------- | | type | Type of the input field (e.g: string, number, email, password) | string | | getvalueCallback | Callback that returns the value from the input field as parameter | function |

LoginForm

| Prop | Description | value/format | | :--------- | :------------------------------------------------------------------------ | :----------- | | LoginImage | URL of the image displayed above the form | string | | url | URL of the server to make the POST request with the username and password | string |

Progress

| Prop | Description | value/format | | :------------ | :-------------------------------------- | :----------- | | maxValue | Maximun value of the progress indicator | number | | progressValue | Initial value of the progress indicator | number |

Rating

| Prop | Description | value/format | | :--------------- | :--------------------------------------------------------------------- | :----------- | | getvalueCallback | Callback that returns the value from the Rating Component as parameter | function |

Select

| Prop | Description | value/format | | :--------------- | :---------------------------------------------------------------------------------------------------- | :------------ | | options | Array with the options available for the user to select(e.g: {label: OptionTitle, value: InputValue}) | array of JSON | | getvalueCallback | Callback that returns the selected value from the select as a parameter | function |

Slider

| Prop | Description | value/format | | :--------------- | :--------------------------------------------------------------------- | :----------- | | min | Minimal value of the slider | number | | max | Maximal value of the slider | number | | getvalueCallback | Callback that returns the value from the Select Component as parameter | function |

Switch

| Prop | Description | value/format | | :------- | :-------------------------------------------- | :----------- | | getState | Callback that returns the state of the switch | function |

Hooks

useCPFChecker

Function to check if the CPF Number (Brazilian Social Security) is valid.

useLocalStorage

Function to facilitate saving values in local storage.

useLogger

Function to log a given variable every time it change value.