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

@nkiko/birds

v1.1.0

Published

Birds library Allows you to build robust dashboard faster, with starter components such as Layout, Form, Inputs and AuthPage

Readme

🐦 Birds UI Library

Birds is a modular React component library built to automate dashboard creation, manage form inputs, and handle dynamic tables effortlessly. Designed with developer speed in mind, it provides ready-to-use components that save you time when building internal tools, admin panels, or student systems.

🧪 This is a testing version. Use in non-production environments and feel free to contribute feedback or improvements!


📦 Installation

First, install React (if not already installed):

npm install react react-dom react-router-dom
npm install @nkiko/birds
# or
yarn add @nkiko/birds

🚀 Quick Example (Usage)

import React from 'react';
import Birds from '@nkiko/birds';
import { productsData, productsKeys } from './utils'; // basic featched data
import { icons } from 'lucide-react';

function Dashboard() {
  const links = [
    { label: 'Home', path: '/', icon: <icons.House /> }
  ];

  return (
    <Birds.Provider links={links} title="Dashboard">
      <Birds.Table
        data={productsData}
        rows={productsKeys}
        onEdit={(item) => alert(`Edit ${item.name}`)}
        onDelete={(item) => alert(`Delete ${item.name}?`)}
      />

      <Birds.Form title="Add user" action="http://localhost:3000/api">
        <Birds.Input
          label="Full names"
          name="fullNames"
          placeholder="Enter full names..."
        />
        <Birds.Select
          label="Class Room"
          name="class"
          placeholder="Select a class room"
          options={{
            basicKeys: ['id', 'name'],
            data: productsData
          }}
        />
      </Birds.Form>
    </Birds.Provider>
  );
}

export default Dashboard;

📚 Components Overview

🧱 <Birds.Provider />

Wraps your dashboard layout with a sidebar and optional top bar.

Props:

  • links: Array of navigation items (with label, path, icon)
  • title: Title of the dashboard
<Birds.Provider title="Dashboard" links={[{ label: "Home", path: "/", icon: <icons.House /> }]} >
  {/* children components go here */}
</Birds.Provider>

📋 <Birds.Table />

Displays a dynamic table using provided data and row keys.

Props:

  • data: Array of data (JSON)
  • rows: Array of strings (fields to show)
  • onEdit, onDelete: Handlers for each row
<Birds.Table
  data={productsData}
  rows={['id', 'name', 'price']}
  onEdit={(item) => console.log('Edit:', item)}
  onDelete={(item) => console.log('Delete:', item)}
/>

📝 <Birds.Form />

Form wrapper with submission capabilities via an action URL.

Props:

  • title: Form title
  • action: API endpoint URL
  • children: Form fields (Input, Select)
<Birds.Form title="Register Student" action="/api/register">
  <Birds.Input label="Name" name="name" placeholder="Enter name..." />
</Birds.Form>

🔤 <Birds.Input />

Standard text input.

Props:

  • label: Field label
  • name: Form field name
  • placeholder: Input placeholder
<Birds.Input label="Full Name" name="fullName" placeholder="John Doe" />

🔽 <Birds.Select />

Dropdown input with dynamic data population.

Props:

  • label, name, placeholder: Standard field info

  • options: Object with:

    • basicKeys: [valueKey, labelKey]
    • data: JSON array for options
<Birds.Select
  label="Select Class"
  name="class"
  placeholder="Choose a class"
  options={{
    basicKeys: ['id', 'name'],
    data: classData
  }}
/>

✨ Key Features

  • ⚙️ Automated Dashboard Creation — instantly scaffold layouts with sidebar, top bar, and content area.
  • 📝 Form Handling — simplified, customizable forms with Input and Select components.
  • 📊 Table Builder — dynamic tables built with just data and rows arrays.
  • 🔐 Basic Fake Authentication — prebuilt structure to simulate login/logout logic.

👨‍🎓 Created By

Built and maintained with ❤️ by Nkiko Hertier


📜 License

MIT License