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

@jax-data-science/components

v0.1.0-a.1

Published

# Overview This library provides reusable, accessible, and consistent UI components that work seamlessly across multiple applications and micro-frontend architectures. Built with modern web standards, the library ensures components maintain visual and fun

Readme

@jax-data-science/components by The Jackson Laboratory (JAX)

Overview

This library provides reusable, accessible, and consistent UI components that work seamlessly across multiple applications and micro-frontend architectures. Built with modern web standards, the library ensures components maintain visual and functional consistency whether used in standalone apps, embedded widgets, or federated modules. The library integrates seamlessly with @jax-data-science/themes to provide a cohesive design system across the entire JAX Data Science community.

Installation

npm install @jax-data-science/components @jax-data-science/themes

Available Components

Note: For a complete list of components and their APIs, visit our Demo Application or check the generated documentation.

Theming

The library supports custom theming through CSS custom properties. See the @jax-data-science/themes package for available themes and customization options.

Quick Start

1. Import Module

Import the required modules in your application:

import { SomeJAXComponent } from '@jax-data-science/components';

@Component({
  imports: [..., SomeJAXComponent, ...],
})
export class AppComponent {}

2. Import Styles

Add the required styles to your angular.json file:

{
  "projects": {
    "your-project-name": {
      "architect": {
        "build": {
          "options": {
            "styles": [
              ...
              "node_modules/@jax-data-science/components/styles/styles.css",
              "node_modules/@jax-data-science/components/styles/components-tailwind.css",
              ...
            ]
          }
        }
      }
    }
  }
}

3. Use Components

Start using components in your templates

<jax-button variant="primary" size="medium">
  Click me
</jax-button>

<jax-card>
  <jax-card-header>
    <h2>Card Title</h2>
  </jax-card-header>
  <jax-card-content>
    Card content goes here
  </jax-card-content>
</jax-card>

Contributing

The JAX Data Science team welcomes and encourages collaborations!

Why Contribute?

By contributing to @jax-data-science/components, you help:

  • robust library of reusable components that accelerate development across JAX teams
  • establish consistent user experiences across the JAX Data Science discovery ecosystem
  • advance open science by sharing high-quality UI patterns with the broader research community
  • collaborate with scientists and developers to solve real-world data visualization and interaction challenges
  • shape the future of scientific software interfaces and user experience design

Ways to Contribute

  • Component Development

  • Testing & Quality Assurance

  • Documentation

  • Bug Fixes & Enhancements

Reporting Issues

Found a bug or have a suggestion? Please email us at: [email protected]

When reporting issues please include:

  • a clear description of the problem or suggestion
  • steps to reproduce (for bugs)
  • expected vs. actual behavior
  • screenshots or code examples when applicable
  • environment details (browser, framework version, etc.)

Changelog

For detailed release notes and version history, see CHANGELOG.md.

More Information

GitHub Repo: jds-ui-components

Maintained By: JAX Data Science

Contact: [email protected]

Demo Application: View JDS Components