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

pines-ui-react

v0.2.0

Published

React 19 port of Pines UI (https://devdojo.com/pines) — pure .tsx + .scss components, no Alpine or Tailwind required.

Downloads

38

Readme

pines-ui-react

A React 19 port of Pines UI by DevDojo — the Alpine JS + Tailwind CSS UI library — rebuilt as pure .tsx + .scss components. No Alpine, no Tailwind, no runtime dependencies beyond React.

  • Every component lives in a single PinesUI<Name>.tsx file with a matching PinesUI<Name>.scss, faithfully translating the original Tailwind styling into SCSS.
  • Layout/positioning classes from the original demos (margins, fixed positioning, demo widths) are not baked into the components — pass your own className/style to position them.
  • Composition follows JSX conventions: text goes in children, nested structures use subcomponents (<DropdownMenu><DropdownMenuItem>…).

See COMPONENTS.md for the full usage reference of every component, and CHANGELOG.md for release notes.

Install

npm install pines-ui-react

Usage

import { Button, Tooltip } from 'pines-ui-react';
import 'pines-ui-react/styles.css'; // once, e.g. in your entry file

export function Example() {
  return (
    <Tooltip text="Hello!" position="top">
      <Button>Click me</Button>
    </Tooltip>
  );
}

Demo

The repo ships a docs-style demo page showing every component with adjustable knobs:

npm install
npm run dev      # demo at http://localhost:5173

Build the package

npm run build    # emits dist/ (ESM + CJS + d.ts + pines-ui-react.css)

To use it in another project before publishing: npm pack here, then npm install ../pines-ui-react/pines-ui-react-0.1.0.tgz — or npm link.

Components

Accordion, Alert, Badge, Banner, Breadcrumbs, Button, Card, Checkbox, Command, Context Menu, Copy to Clipboard, Date Picker, Dropdown Menu, Full Screen Modal, Hover Card, Image Gallery, Marquee, Menubar, Modal, Monaco Editor, Navigation Menu, Pagination, Popover, Progress, Quote, Radio Group, Range Slider, Rating, Retro Grid, Select (optionally searchable), Slide Over, Switch, Table, Tabs, Text Animation, Text Input, Textarea, Toast, Tooltip, Typing Effect, Video.

Note: Monaco Editor loads the editor runtime from the cdnjs CDN at runtime, so it needs network access; everything else is fully self-contained.

License

MIT — original design and styles by DevDojo's Pines UI (MIT). See LICENSE.md.