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

@rayvelez/findash-ui

v2.0.0

Published

FinDash UI - A modern financial dashboard design system built with React and Tailwind CSS

Readme

@rayvelez/findash-ui

A modern financial dashboard design system built with React. Features a vibrant green and purple color palette with dark mode support, liquid glass effects, and beautifully crafted dashboard components.

Zero-config - Just install, import, and use. No Tailwind setup required.

Installation

npm install @rayvelez/findash-ui

Quick Start

import { DashboardTemplate } from "@rayvelez/findash-ui";
import "@rayvelez/findash-ui/styles";

function App() {
  return <DashboardTemplate />;
}

That's it! The styles are pre-compiled and bundled.

Dark Mode

Toggle dark mode by adding the dark class to your root element:

// Enable dark mode
document.documentElement.classList.add("dark");

// Toggle
document.documentElement.classList.toggle("dark");

Complete Example

import { DashboardTemplate, type DashboardData } from "@rayvelez/findash-ui";
import "@rayvelez/findash-ui/styles";

const data: DashboardData = {
  user: {
    name: "Alex Morgan",
    role: "Premium User",
    avatarUrl: "https://example.com/avatar.jpg",
  },
  balance: {
    currentBalance: 15368,
    percentageChange: 14,
    averageScore: 18324,
  },
  investmentGrowth: {
    percentage: 8.2,
    monthlyAverage: 12450,
    totalValue: 24890,
  },
  btcPrice: {
    price: 21105,
    changePercentage: 28.21,
  },
  marketCap: {
    value: "1,3trln$",
  },
  salesStatistics: {
    visitors: 2025,
    updatedDaysAgo: 1,
  },
  portfolio: [
    { asset: "Bitcoin", symbol: "BTC", percentage: 45, color: "bg-primary" },
    { asset: "Ethereum", symbol: "ETH", percentage: 30, color: "bg-secondary" },
    { asset: "Solana", symbol: "SOL", percentage: 15, color: "bg-foreground" },
    { asset: "Others", symbol: "---", percentage: 10, color: "bg-muted" },
  ],
  watchlist: [
    { name: "Cardano", symbol: "ADA", price: "0.58", change: "+5.2%", positive: true },
    { name: "Polkadot", symbol: "DOT", price: "7.23", change: "-2.1%", positive: false },
  ],
  forecasts: [
    { year: "2024", description: "Mainstream adoption", completed: false },
    { year: "2025", description: "1 BTC reaches $500K", completed: false },
  ],
  transactions: {
    summary: "12,53 ETH/1 BTC",
  },
};

function App() {
  return (
    <DashboardTemplate
      data={data}
      onThemeToggle={() => document.documentElement.classList.toggle("dark")}
      onNavItemClick={(item) => console.log("Nav:", item)}
      onActionClick={(action) => console.log("Action:", action)}
    />
  );
}

Individual Components

import {
  SalesStatisticsCard,
  CurrentBalanceCard,
  BtcPriceCard,
  PortfolioAllocationCard,
  WatchlistCard,
  FloatingNavBar,
  Sidebar,
  MobileNav,
} from "@rayvelez/findash-ui";
import "@rayvelez/findash-ui/styles";

// Use any component individually
<SalesStatisticsCard visitors={2025} updatedDaysAgo={1} />
<CurrentBalanceCard balance={15368} percentageChange={14} />
<BtcPriceCard price={21105} changePercentage={28.21} />

Components

Dashboard Cards

| Component | Description | |-----------|-------------| | SalesStatisticsCard | Visitor stats with bar chart | | CurrentBalanceCard | Balance with gauge visualization | | InvestmentGrowthCard | Investment metrics with gauge | | BtcPriceCard | Bitcoin price with progress bar | | MarketCapCard | Market cap with line chart | | MarketForecastCard | Timeline of predictions | | PortfolioAllocationCard | Portfolio breakdown | | WatchlistCard | Cryptocurrency watchlist | | RecentTransactionsCard | Transaction summary | | QuickActionsCard | Quick action buttons |

Navigation

| Component | Description | |-----------|-------------| | Sidebar | Desktop sidebar navigation | | MobileNav | Mobile top navigation with slide-out menu | | FloatingNavBar | Floating action bar with glass effect |

Template

| Component | Description | |-----------|-------------| | DashboardTemplate | Complete dashboard layout |

TypeScript

All components are fully typed:

import type {
  DashboardData,
  NavItem,
  WatchlistItem,
  PortfolioAllocation,
  ForecastItem,
  ActionItem,
  UserInfo,
} from "@rayvelez/findash-ui";

Advanced: Custom Tailwind Setup

If you want to customize the theme via Tailwind, you can use the preset:

// tailwind.config.ts
import type { Config } from "tailwindcss";

export default {
  presets: [require("@rayvelez/findash-ui/tailwind.preset")],
  content: [
    "./src/**/*.{ts,tsx}",
    "./node_modules/@rayvelez/findash-ui/dist/**/*.{js,mjs}",
  ],
} satisfies Config;

License

MIT