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

@jasperoosthoek/react-toolbox

v0.11.2

Published

Extensive library of React components that work together with react-bootstrap

Readme

React Toolbox

A comprehensive library of React components that integrates seamlessly with react-bootstrap. Build modern, interactive applications faster with pre-built, customizable components.

Quick Start

Live Dashboard Demo | Interactive Examples | Dashboard Source Code

Installation

npm install @jasperoosthoek/react-toolbox

Required peer dependencies:

npm install react react-dom react-bootstrap bootstrap date-fns date-fns-tz react-dnd react-icons react-localization

Setup:

import 'bootstrap/dist/css/bootstrap.min.css';

Try It Now

Online: Visit react-toolbox.vercel.app for interactive examples with copy-pasteable code (server-side rendered)

Locally:

git clone https://github.com/jasperoosthoek/react-toolbox.git
cd react-toolbox
npm install
npm run dev  # Interactive examples at localhost:5173

Documentation & Examples

Live Interactive Examples

Example Categories

The live examples include comprehensive demonstrations with working code you can copy and paste:

Core Components

DataTable

Feature-rich data tables with sorting, pagination, search, drag & drop, and inline editing.

import { DataTable } from '@jasperoosthoek/react-toolbox';

<DataTable
  data={users}
  columns={columns}
  onClickRow={openEditModal}
/>

Form System

Comprehensive form management with validation, modals, and field components.

import { FormProvider, FormInput } from '@jasperoosthoek/react-toolbox';

<FormProvider formFields={formFields} onSubmit={handleSubmit}>
  <FormInput name="email" label="Email" type="email" />
</FormProvider>

Icon Buttons

30+ pre-built buttons with loading states and confirmation dialogs.

import { EditButton, DeleteConfirmButton } from '@jasperoosthoek/react-toolbox';

<EditButton onClick={handleEdit} loading={isLoading} />
<DeleteConfirmButton onDelete={handleDelete} />

Localization

Template string syntax with multi-language support.

import { LocalizationProvider, useLocalization } from '@jasperoosthoek/react-toolbox';

const { text } = useLocalization();
return <h1>{text`save`}</h1>;

See comprehensive examples: Visit the interactive examples or run npm run dev locally

Development

Available Scripts

npm run dev              # Start interactive examples locally (with SSR)
npm run build           # Build library for npm distribution
npm run test            # Run tests
npm run build:examples  # Build examples for deployment (react-toolbox.vercel.app)

Project Structure

src/
├── components/         # Library components
│   ├── buttons/       # Icon buttons, confirmations
│   ├── forms/         # Form system
│   ├── tables/        # DataTable components
│   └── ...
├── examples/          # Interactive examples (deployed to react-toolbox.vercel.app)
└── utils/             # Hooks and utilities

Testing & TypeScript

  • Full TypeScript support with strict type checking
  • Comprehensive test suite with Jest and React Testing Library
  • Type definitions included in distribution

Contributing

Quick Setup

git clone https://github.com/jasperoosthoek/react-toolbox.git
cd react-toolbox
npm install
npm run dev

Guidelines

  • Add working examples for new components
  • Maintain test coverage
  • Follow TypeScript best practices
  • Update documentation as needed

Package Information

  • TypeScript: Full type definitions included
  • Tree Shaking: ES modules supported
  • Bundle Size: Optimized for production
  • SSR Compatible: Server-side rendering ready with 4x performance improvement
  • Peer Dependencies: Uses your existing React/Bootstrap setup

Links

License

MIT License - see LICENSE for details.


Built with React, TypeScript, and react-bootstrap