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

flowtail

v1.0.3

Published

<div align="center"> <h3>A beautiful, modern React component library built with Tailwind CSS and Framer Motion</h3> <p>30+ fully customizable components with smooth animations</p> </div>

Readme

FlowTail - Modern React UI Component Library

✨ Features

  • 🎨 30+ Components - All essential UI components you need
  • 🎭 Smooth Animations - Powered by Framer Motion
  • 🎯 TypeScript - Full type safety and IntelliSense
  • 🎨 Tailwind CSS - Easily customizable with utility classes
  • 📱 Responsive - Mobile-first design approach
  • Accessible - ARIA compliant components
  • 🚀 Tree-shakeable - Import only what you need
  • 📦 Zero Config - Works out of the box

📦 Installation

npm install flowtail
# or
yarn add flowtail
# or
pnpm add flowtail

🚀 Quick Start

  1. Import the CSS in your main file:
import "flowtail/styles.css";
  1. Import and use components:
import { Button, Input, Modal } from "flowtail";

function App() {
  return (
    <div>
      <Button variant="primary">Click me</Button>
      <Input label="Email" placeholder="Enter your email" />
    </div>
  );
}

📚 Components

Form Components

  • Button - Versatile button with multiple variants and sizes
  • Input - Text input with labels, errors, and addons
  • Select - Dropdown with search functionality
  • Checkbox - Animated checkbox input
  • Radio - Radio button input
  • Textarea - Multi-line text input
  • Switch - Toggle switch with smooth animation
  • FileUpload - Drag-and-drop file upload
  • IconButton - Compact icon-based button

Overlay Components

  • Modal - Dialog with backdrop and animations
  • Drawer - Slide-in panel from any direction
  • Tooltip - Contextual information on hover
  • Toast - Notification messages
  • Popover - Floating content container

Data Display

  • Table - Data table with sorting and pagination support
  • Card - Container with header, body, and footer
  • Badge - Status and category indicators
  • Accordion - Collapsible content sections
  • Tabs - Tabbed interface with multiple variants

Layout Components

  • Container - Content wrapper with max-width
  • Flex - Flexbox layout utility
  • Center - Center content horizontally and vertically

Typography

  • Heading - Heading component with multiple sizes
  • Text - Text component with variants

Utility Components

  • Loader - Multiple loading spinner variants
  • Spinner - Loading spinner with customizable size
  • Pagination - Navigate through pages of data
  • Datepicker - Calendar date picker
  • Image - Enhanced image component

💡 Usage Examples

Button

import { Button } from "flowtail";

<Button variant="primary" size="md" isLoading={false}>
  Click me
</Button>;

Modal with Toast

import { Modal, Button, ToastProvider, useToast } from "flowtail";

function MyComponent() {
  const [isOpen, setIsOpen] = useState(false);
  const { toast } = useToast();

  return (
    <ToastProvider>
      <Button onClick={() => setIsOpen(true)}>Open Modal</Button>
      <Modal isOpen={isOpen} onClose={() => setIsOpen(false)} title="My Modal">
        <p>Modal content here</p>
        <Button
          onClick={() => toast({ title: "Success!", variant: "success" })}
        >
          Show Toast
        </Button>
      </Modal>
    </ToastProvider>
  );
}

Table

import { Table } from "flowtail";

const data = [
  { id: 1, name: "John", email: "[email protected]" },
  { id: 2, name: "Jane", email: "[email protected]" },
];

const columns = [
  { key: "id", header: "ID" },
  { key: "name", header: "Name" },
  { key: "email", header: "Email" },
];

<Table data={data} columns={columns} striped hoverable />;

Select with Search

import { Select } from "flowtail";

const options = [
  { value: "1", label: "Option 1" },
  { value: "2", label: "Option 2" },
  { value: "3", label: "Option 3" },
];

<Select
  label="Choose an option"
  options={options}
  searchable
  onChange={(value) => console.log(value)}
/>;

🎨 Customization

All components accept a className prop for custom styling:

<Button className="custom-class">Custom Button</Button>

Tailwind CSS classes work seamlessly:

<Card className="shadow-xl hover:shadow-2xl">
  <CardBody>Custom styled card</CardBody>
</Card>

🔧 Development

# Install dependencies
npm install

# Run development server
npm run dev

# Build library
npm run build:lib

# Build demo
npm run build

📄 License

MIT © BSA

📖 Documentation

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📞 Support

For issues and questions, please open an issue on GitHub.

🎯 Live Demo

Run the development server to see all components in action:

npm run dev

Then open http://localhost:5173 in your browser.


Made with ❤️ using React, Tailwind CSS, and Framer Motion