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 πŸ™

Β© 2025 – Pkg Stats / Ryan Hefner

@biqpod/app

v0.4.1

Published

Biq Pod UI For Desgine πŸ’¦

Readme

Biq Pod UI Library

A comprehensive React-based UI library and application framework for building modern web and desktop applications.

πŸš€ Features

  • Rich Component Library: 70+ pre-built React components
  • Multi-platform Support: Web, Desktop (Electron), and Mobile (Capacitor)
  • Theme System: Built-in dark/light theme support with customizable colors
  • Internationalization: Multi-language support with easy translation management
  • Type-safe: Full TypeScript support
  • Modular Architecture: Tree-shakeable components and utilities

πŸ“¦ Installation

npm install @biqpod/app

πŸ—οΈ Project Structure

src/
β”œβ”€β”€ core/                    # Core application logic and infrastructure
β”‚   β”œβ”€β”€ app/                # Application setup and initialization
β”‚   β”œβ”€β”€ config/             # Configuration files and constants
β”‚   β”œβ”€β”€ models/             # Data models and business logic
β”‚   β”œβ”€β”€ services/           # External services and APIs
β”‚   └── store/              # State management (Redux store)
β”œβ”€β”€ shared/                  # Reusable components and utilities
β”‚   β”œβ”€β”€ ui/                 # UI components and layouts
β”‚   β”‚   β”œβ”€β”€ components/     # Reusable UI components
β”‚   β”‚   β”œβ”€β”€ layouts/        # Layout components
β”‚   β”‚   └── styles/         # SCSS/CSS styles
β”‚   β”œβ”€β”€ hooks/              # Custom React hooks
β”‚   β”œβ”€β”€ utils/              # Utility functions
β”‚   β”œβ”€β”€ types/              # TypeScript type definitions
β”‚   β”œβ”€β”€ functions/          # Utility functions
β”‚   └── assets/             # Static assets (images, fonts, etc.)
└── features/               # Feature-specific modules
    β”œβ”€β”€ auth/               # Authentication feature
    β”œβ”€β”€ demo/               # Demo pages and examples
    β”œβ”€β”€ settings/           # Settings management
    └── notifications/      # Notification system

πŸ“– Read the Architecture Guide for detailed explanations of the new structure.

🚦 Getting Started

Basic Usage

import { Button, Card, Input } from "@biqpod/app/components";
import { startApplication } from "@biqpod/app/app";

const MyApp = () => (
  <Card>
    <Input placeholder="Enter your name" />
    <Button>Submit</Button>
  </Card>
);

// Start the application
startApplication(<MyApp />, {
  isDev: process.env.NODE_ENV === "development",
  projectId: "your-project-id",
});

Available Packages

Core Modules:

  • @biqpod/app/core - Core application logic and services
  • @biqpod/app/core/app - Application initialization
  • @biqpod/app/core/services - API services and integrations

Shared Modules:

  • @biqpod/app/shared/ui/components - UI components
  • @biqpod/app/shared/ui/layouts - Layout components
  • @biqpod/app/shared/hooks - Custom hooks
  • @biqpod/app/shared/utils - Utility functions
  • @biqpod/app/shared/types - TypeScript types

Legacy Compatibility:

  • @biqpod/app/components - UI components (mapped to shared/ui/components)
  • @biqpod/app/hooks - Custom hooks (mapped to shared/hooks)
  • @biqpod/app/utils - Utility functions (mapped to shared/utils)
  • @biqpod/app/layouts - Layout components (mapped to shared/ui/layouts)
  • @biqpod/app/types - TypeScript types (mapped to shared/types)

🎨 Components

Form Components

  • Input, TextArea, Button
  • DateField, ColorField, FileField
  • ArrayField, ObjectField, EnumField
  • Form validation and management

Layout Components

  • Card, Panel, Tabs
  • Grid, Flex utilities
  • Responsive layouts

Data Display

  • List, Tree, Table
  • Charts and visualization
  • Loading states

Navigation

  • Router integration
  • Breadcrumbs, Menu
  • Command palette

πŸ”§ Development Scripts

# Development server
npm run dev

# Build library
npm run build.lib

# Build web app
npm run build.web

# Type checking
npm run compile

# Linting
npm run lint

# Testing
npm run e2e

🌐 Platform Support

Web

Standard web application deployment with Vite.

Desktop (Electron)

npm run build.electron

Mobile (Capacitor)

Supports iOS and Android via Capacitor integration.

🎯 Configuration

The library supports extensive configuration through the startApplication function:

startApplication(<App />, {
  isDev: boolean,
  projectId: string,
  timeLoading: number,
  onPrepare: () => ({
    colors: Color[],
    settings: Setting[],
    commands: Command[],
    translations: Translation[]
  })
});

πŸ“š Documentation

🀝 Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

πŸ“„ License

MIT License - see LICENSE.md for details.

πŸ”— Links