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

@digituz/react-components

v1.5.2

Published

Digituz React Components

Downloads

103

Readme

React Components Powered by Digituz

This repository houses React Components provided by Digituz. All components are self-contained as distinct NPM packages and the orchestration of these packages is handled by @digituz/monorepo.

One of the main goals of this project is to provide React components with as few dependencies as possible.

For the moment, this monorepo contains the following components:

Creating New Components

There is a script on ./src/create-component.js file that takes as an argument the name of the component and create boilerplate code and files to it. To use it, go to ./src and issue this:

node create-component MyComponentName

Releasing New Versions

This section is divided into two parts. First, there will be a subsection that explains how to use @digituz/monorepo to release new versions. After that, there will be a subsection about Travis CI.

Digituz Monorepo

As this project uses @digituz/monorepo to orchestrate multiple NPM packages, this subsection shows how to use some monorepo commands.

# monorepo is available at the src directory
cd src

# test all packages
monorepo test

# test a single package
monorepo test -p Button

# run a script on a single package
monorepo runScript -r processCss -p Input

# bump minor version
monorepo bump -b minor

The only command necessary to release new versions is the last one, monorepo bump -b minor. After executing it, you will see that there is a new Git tag available. Then, you will have to push it to Travis so this tool knows that it must publish new versions.

The command to update the Git repository and, consequently, to make Travis trigger a release is:

git push origin master --tags

Travis CI

The .travis.yml file contains an encrypted $NPM_TOKEN environment variable in the env.global.secure property. To publish to NPM, Travis must have a valid token. That is, you must have NPM logged in on an environment. If you issue npm logout, NPM removes the token from your account and, as such, this becomes an invalid token.

So, if this happens, you need to npm login again in some environment (like you development machine). Then, looking in your ~/.npmrc file, you will see an entry that looks something like this:

//registry.mycompany.com/:_authToken=[my-secret-token]

Copy whatever you find in the place of [my-secret-token], and use it with the following command:

travis encrypt NPM_TOKEN=[my-secret-token] --add env.global

This will create a new env.global.secure. Note that it is better to remove the previous env.global.secure property, as it is not valid anymore and that it needs to be replaced by the new one.