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

@nikhilaggala/react-navbar

v1.1.1

Published

![npm](https://img.shields.io/npm/v/@nikhilaggala/react-navbar?style=flat-square) ![npm downloads](https://img.shields.io/npm/dm/@nikhilaggala/react-navbar?style=flat-square)

Downloads

6

Readme

🧭 Simple React Navbar Component

npm npm downloads

A fully responsive, mobile-friendly navbar React component — easily customizable with icons and colors.

📸 Demo

![Navbar Demo](./demo/assets/Screenshot 2025-05-02 at 1.58.50 PM.png)

✨ Features

  • 📱 Mobile responsive with hamburger menu
  • 🎨 Customizable background and text colors
  • ✅ Works with any icons (Lucide, FontAwesome, etc.)
  • 🪶 Lightweight and easy to integrate

📚 Tech Stack & Architecture

🧱 Tech Used

  • React 19 – Core library for building the Navbar UI component.
  • TypeScript – Provides strong typing for component props and internal logic.
  • Vite – Lightning-fast dev server and build tool for local development.
  • Tsup – Bundler used to generate both CommonJS (.js) and ESM (.mjs) builds with TypeScript declaration files (.d.ts).
  • CSS – Component styling is handled with a clean, responsive CSS file.
  • Icons Support – Fully compatible with Lucide, FontAwesome, or any ReactNode icons.

🏗️ Build & Publish Process

  1. Project Setup:

    • Used Vite for local development (vite).
    • Component resides in src/components/Navbar.tsx.
  2. Bundling with Tsup:

    • tsup generates:
      • dist/index.js (CommonJS)
      • dist/index.mjs (ESM)
      • dist/index.d.ts (Type declarations)
  3. Package Publishing:

    • Package name: @nikhilaggala/react-navbar
    • Published to npm via npm publish --access public.
    • package.json contains proper main, module, types, and exports fields for compatibility.

🚀 Installation

npm install @nikhilaggala/react-navbar

Usage

import { Navbar } from "@nikhilaggala/react-navbar";
import { Home, Settings } from "lucide-react"; // or any icon lib

const App = () => {
  return (
    <Navbar
      navItems={[
        { label: "Home", icon: <Home /> },
        { label: "Settings", icon: <Settings /> },
      ]}
      backgroundColor="#333"
      textColor="#fff"
    />
  );
};

Props

| Prop | Type | Default | Description | |------------------|-----------------------------|---------|----------------------------------------| | navItems | Array of { label, icon } | — | Items to show in the navbar | | backgroundColor| string | #333 | Navbar background | | textColor | string | white | Text and icon color |

Author

Built for demo by Nikhil Aggala