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

@vbenton/native-web-components

v1.7.7

Published

A collection of lightweight, accessible React components built on native HTML5 elements.

Readme

Native Web Components

License: MIT TypeScript React Tests

A collection of lightweight React components built on native HTML5 elements to create intuitive and accessible user interfaces. Written in TypeScript for maintainability, with unit tests for reliability.

Live Demo

Description

This repository contains a set of React components meticulously crafted using semantic HTML5 elements. The goal is to provide lightweight, performant, and inherently accessible UI building blocks that seamlessly integrate into any React project. Leveraging native HTML5 ensures optimal browser rendering and reduces reliance on heavy JavaScript abstractions, resulting in a faster and more user-friendly experience.

Components

  • CodeBlock — syntax-highlighted code display via <pre>/<code>
  • DatePicker — accessible date input wrapping <input type="date">
  • DetailsDropdown — collapsible content via <details>/<summary>
  • Dialog — modal and non-modal dialogs via <dialog>
  • FileDrop — drag-and-drop file upload zone
  • Meter — gauge display via <meter>
  • Picture — responsive images via <picture>/<source>
  • ProgressBar — progress indicator via <progress>
  • Range — slider input via <input type="range"> with optional datalist tick marks

Key Features

  • Semantic HTML5: Components are built directly upon elements like <dialog>, <details>, <summary>, etc., ensuring inherent accessibility and SEO benefits.
  • Lightweight and Performant: Minimal JavaScript overhead for fast rendering and optimal performance.
  • TypeScript-Powered: Developed with TypeScript for enhanced type safety, maintainability, and developer experience. Leverages modern React patterns and best practices.
  • Accessible by Default: Focus on accessibility from the ground up, adhering to WCAG guidelines.
  • Easy to Customize: Simple and intuitive API for easy integration and customization within your React application.
  • Comprehensive Unit Tests: Rigorously tested with Vitest and React Testing Library to ensure reliability and prevent regressions.

Installation

npm install @vbenton/native-web-components

Usage

import { Dialog } from '@vbenton/native-web-components';
import React from 'react';

const MyComponent = () => {
  return (
    <Dialog isOpen={true} onClose={() => console.log("Dialog closed!")}>
      <h2>My Dialog Title</h2>
      <p>This is the content of my dialog.</p>
    </Dialog>
  );
};

Contributing

Contributions are welcome! Please fork the repository and submit a pull request with your changes. Ensure that your code adheres to the project's coding standards and includes comprehensive unit tests.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Vit Benton - https://github.com/VitBenton88 - [email protected]

LinkedIn