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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@systatum/coneto

v2.2.0

Published

Coneto is a shared component library used across all applications at Systatum — including Workaty, Dashtomer, and others, designed with modernity, simplicity, and usability in mind.

Readme

Coneto

Coneto is a shared component library used across all applications at Systatum — including Workaty, Dashtomer, and others, designed with modernity, simplicity, and usability in mind.

To start the storybook locally:

pnpm install
pnpm storybook

Component Structure

Each main component consists of two parts:

  1. [component].tsx – the React component
  2. [component].stories.tsx – the Storybook file to display the component

How to run:

  1. Install dependencies: pnpm install
  2. Start Storybook locally: pnpm storybook

How to Submit Changes to Chromatic

We don't actively using Chromatic anymore.

  1. Open Chromatic on your desktop
  2. Make any necessary changes to your component
  3. Commit and push your changes
  4. Publish the changes to Chromatic: npx chromatic --project-token={{your token}} or pnpm build-chromatic
  5. View your updates in the Chromatic app

How to Test

  1. Create your component test inside the test/e2e directory. Each component should have its own test file.
  2. Write your test logic to cover expected behaviors, interactions, and visual, name the file using the format [component].cy.ts then save it.
  3. Commit and push your changes to the repository.
  4. To run tests locally:
    1. Ensure that you have cypress installed:

      pnpm add --save-dev cypress # you may need to do this
      ./node_modules/.bin/cypress install # install the cypress app locally

      You will know that you need to install cypress if you see this kind of error:

      Please reinstall Cypress by running: cypress install
      
      ----------
      
      Cypress executable not found at: /Users/adam.h/Library/Caches/Cypress/14.5.3/Cypress.app/Contents/MacOS/Cypress
    2. Run the storybook server, used for E2E testing: pnpm run storybook

    3. Execute either use one of the following commands:

      • pnpm test-open – opens the Cypress Test Runner with an interactive UI.
      • pnpm test-run – runs all tests in headless mode via the CLI. Ensure that you see All specs passed! eventually.

Tech Stack

This repository uses:

  • @storybook/react-vite – the core framework that runs Storybook using Vite for faster builds and hot reloads
  • @storybook/addon-essentials – a set of essential addons like docs, controls, actions, and viewport to enhance Storybook functionality
  • @storybook/addon-onboarding – used for testing individual React components in isolation to ensure they behave correctly, integrated with Storybook for a consistent testing environment

Code Quality Checks

  1. Run unit tests: pnpm test-open or pnpm test-run
  2. Run the linter to check for unused code and issues: pnpm lint

Coding convention

  1. Constants should always be in SNAKE_CASE_CAPITALS
  2. Helper functions, when they're not likely to be re-usable, should be put in the same file of the component, but located after the component's function declaration.
  3. Constants, when they're not likely to be re-usable, should be put in the same file of the compoennt.

How to deploy

  1. Build Storybook: pnpm build-storybook
  2. Push the build output
  3. Deploy it using your preferred platform (e.g., Vercel, Netlify, etc.)