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

@coolbuilds/ui-react-component-base

v1.0.10

Published

A React Native UI component base package for Coolbuilds projects. The package exposes reusable UI primitives and a centralized theme layer so product teams can keep visual decisions consistent across applications.

Readme

React UI Component Base

A React Native UI component base package for Coolbuilds projects. The package exposes reusable UI primitives and a centralized theme layer so product teams can keep visual decisions consistent across applications.

Package name: @coolbuilds/ui-react-component-base

Features

  • React Native component primitives.
  • Shared theme provider and useTheme hook.
  • TypeScript declarations generated at build time.
  • CommonJS and ESM build outputs.
  • Test and coverage workflow with Vitest.
  • Automated npm release workflow from main.

Installation

npm install @coolbuilds/ui-react-component-base

Peer dependencies:

npm install react react-native

Supported peer ranges:

  • react >=18
  • react-native >=0.70

Usage

Wrap your application with ThemeProvider, then import components from the package.

import React from 'react';
import {View} from 'react-native';
import {
  Button,
  ThemeProvider,
  useTheme,
} from '@coolbuilds/ui-react-component-base';

function ExampleScreen() {
  const theme = useTheme();

  return (
    <View style={{backgroundColor: theme.colors.white}}>
      <Button title="Continue" />
    </View>
  );
}

export function App() {
  return (
    <ThemeProvider>
      <ExampleScreen />
    </ThemeProvider>
  );
}

API

ThemeProvider

Provides the package theme through React context.

<ThemeProvider>
  {children}
</ThemeProvider>

useTheme

Returns the current theme object.

const theme = useTheme();

Current theme shape:

{
  colors: {
    abubutek: string;
    black: string;
    blue: string;
    charcoal: string;
    coffebean: string;
    coklat: string;
    darkcyan: string;
    dustylavender: string;
    eletricrose: string;
    grey: string;
    greynew: string;
    pineteal: string;
    purple: string;
    skyaqua: string;
    springgreen: string;
    tropicalTeal: string;
    twilightindigo: string;
    white: string;
    yellow: string;
  };
  language: {
    enHalo: string;
    idHalo: string;
  };
}

Button

A basic React Native button component.

<Button title="Continue" />

Props:

| Prop | Type | Required | Description | | --- | --- | --- | --- | | title | string | Yes | Text rendered inside the button. |

Development

Install dependencies:

npm install --registry=https://registry.npmjs.org/

Run tests:

npm test

Build the package:

npm run build

Build output is generated in dist/:

  • dist/index.js for ESM consumers.
  • dist/index.cjs for CommonJS consumers.
  • dist/index.d.ts and dist/index.d.cts for TypeScript consumers.

Project Structure

components/          React Native UI components
theme/               Theme object, provider, and hook
helper/              Internal helper utilities and tests
dist/                Generated package output
.github/workflows/   CI and npm publish automation

Release Flow

Releases are intended to go through pull requests into main.

  1. Bump the version in package.json.
  2. Sync package-lock.json.
  3. Update CHANGELOG.md.
  4. Open a pull request to main.
  5. Wait for the CI workflow to pass.
  6. Merge the pull request.

After merge, the Publish to npm workflow runs automatically. It reads the version from package.json, creates the matching vX.Y.Z Git tag, publishes the package, and verifies that the package is visible on the npm registry.

Repository

GitHub: https://github.com/coolbuilds/React-UI-Component-Base

License

No license has been declared yet.