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

@sokusystems/react-ui

v0.2.0

Published

Shared React UI primitives for Soku applications such as Conduit, Panorama, and Soku Suite.

Downloads

319

Readme

@sokusystems/react-ui

Shared React UI primitives for Soku applications such as Conduit, Panorama, and Soku Suite.

Distribution Strategy

The official distribution path for this package is the npm registry.

  • Consumers should depend on a published @sokusystems/react-ui version.
  • Local tarballs are allowed only as a temporary validation workflow during development.
  • Consumer repos should not commit long-term file: dependencies or one-off ad hoc tarball paths.

This keeps package consumption stable and makes upgrades reproducible across repos.

Install

npm install @sokusystems/react-ui

This package expects the consumer app to provide compatible peer dependencies:

  • react >= 18
  • react-dom >= 18

Development

Install local dependencies:

npm install

Build the package:

npm run build

Local Consumer Validation

When you need to test an unreleased package build in a sibling app repo, use the scripted local pack flow instead of a one-off manual tarball workflow.

  1. In react-ui, create a local package tarball:
npm run pack:local

This writes a tarball to .local-packages/ and keeps npm cache output in .npm-cache/.

  1. In the consumer repo, install the generated tarball:
npm install ../react-ui/.local-packages/sokusystems-react-ui-<version>.tgz --save
  1. Run the consumer app build/tests there.

  2. Before merging consumer changes, update the consumer back to the intended published version unless you are explicitly coordinating a release cut at the same time.

This gives a repeatable local integration path without making tarball installs the primary distribution strategy.

Release Workflow

Use npm publish as the source of truth.

  1. Make and merge package changes in react-ui.
  2. Bump the package version:
npm version patch

Use minor or major when appropriate.

  1. Run the release verification script:
npm run release:check
  1. Publish the package:
npm publish
  1. Update consuming repos to the new published version and verify their builds.

Scripts

  • npm run build: compile src/ into dist/
  • npm run pack:local: build and create a local tarball in .local-packages/
  • npm run release:check: build and dry-run the publish payload

prepack ensures dist/ is rebuilt before npm pack or npm publish.

Auth

Keep auth out of the repo.

  1. Copy .npmrc.example to .npmrc locally, or configure the same values in your user-level npm config.
  2. Set a valid NPM_TOKEN in your shell before publishing.

Example:

set NPM_TOKEN=your_token_here

The checked-in example keeps the @sokusystems scope configuration without storing a real token in git.