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

@neovantis/mantisui

v1.1.1

Published

A powerful and lightweight React UI component library for internal dashboards and business applications

Readme

🦎 Mantis UI

A powerful and lightweight React component library built for internal dashboards and business applications

npm version TypeScript MIT License Bundle Size


✨ Why Mantis UI?

Built by NeoVantis for the modern web, Mantis UI delivers production-ready components that help you build stunning internal tools and dashboards fast. No bloat, no complexity – just beautiful, accessible components that work.

🚀 Quick Start

npm install @neovantis/mantisui
import { Button, Card, Table, Sidebar } from '@neovantis/mantisui';
import '@neovantis/mantisui/styles';

function Dashboard() {
  return (
    <div className="dashboard">
      <Sidebar items={navItems} collapsible />
      <main>
        <Card variant="elevated">
          <h1>Revenue Overview</h1>
          <Table columns={columns} dataSource={salesData} />
          <Button variant="primary" size="lg">
            Generate Report
          </Button>
        </Card>
      </main>
    </div>
  );
}

🎯 What's Inside

🔘 Buttons - 6 variants, 3 sizes, icons, loading states

<Button variant="primary" loading={isSubmitting}>
  Save Changes
</Button>
<Button variant="ghost" icon={<DownloadIcon />}>
  Export Data
</Button>

📄 Cards - Flexible containers with headers, footers, variants

<Card variant="elevated" header="User Analytics">
  <StatGrid data={metrics} />
</Card>

📊 Tables - Sortable, customizable, responsive data tables

<Table 
  columns={[
    { key: 'name', title: 'Employee', dataIndex: 'name', sortable: true },
    { key: 'status', title: 'Status', render: (status) => <StatusBadge status={status} /> }
  ]}
  dataSource={employees}
  onRowClick={(record) => openProfile(record.id)}
/>

📑 Sidebar - Collapsible navigation with nested menus

<Sidebar 
  items={navigationItems}
  collapsible 
  header={<Logo />}
  footer={<UserProfile />}
/>

✨ Animations - Smooth, performant CSS animations

<Animation type="fadeInUp" triggerOnScroll>
  <MetricsCard />
</Animation>

🎨 Design System

Mantis UI follows a cohesive design language with:

  • 🎯 Consistent spacing - 8px grid system
  • 🌈 Smart color palette - Primary, secondary, success, warning, error variants
  • 📱 Mobile-first - Responsive by default
  • ♿ Accessible - WCAG 2.1 AA compliant
  • 🎭 Smooth animations - Subtle, performant transitions

Customization Made Easy

:root {
  --mantis-primary: #3b82f6;
  --mantis-radius: 8px;
  --mantis-font-family: 'Inter', sans-serif;
  --mantis-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

📦 Real-World Example

Here's how companies use Mantis UI to build internal tools:

function EmployeeDashboard() {
  const [employees, setEmployees] = useState([]);
  const [loading, setLoading] = useState(false);

  const columns = [
    { 
      key: 'name', 
      title: 'Employee', 
      dataIndex: 'name',
      sortable: true 
    },
    { 
      key: 'department', 
      title: 'Department', 
      dataIndex: 'department' 
    },
    {
      key: 'status',
      title: 'Status',
      dataIndex: 'status',
      render: (status) => (
        <span className={`status status--${status.toLowerCase()}`}>
          {status}
        </span>
      )
    }
  ];

  return (
    <div className="app">
      <Sidebar 
        items={[
          { id: 'dashboard', label: 'Dashboard', icon: '📊' },
          { id: 'employees', label: 'Employees', icon: '👥', isActive: true },
          { id: 'reports', label: 'Reports', icon: '📈' }
        ]}
        collapsible
      />
      
      <main className="main-content">
        <Card variant="elevated">
          <div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
            <h1>Employee Directory</h1>
            <Button variant="primary" icon="+" loading={loading}>
              Add Employee
            </Button>
          </div>
          
          <Table 
            columns={columns}
            dataSource={employees}
            onRowClick={(employee) => openEmployeeProfile(employee.id)}
          />
        </Card>
      </main>
    </div>
  );
}

🏗️ Architecture

  • ⚡ Tree-shakeable - Import only what you need
  • 📦 Tiny bundle - <30kb gzipped for the full library
  • 🔧 TypeScript - Complete type definitions included
  • 🎨 CSS Variables - Easy theming without build tools
  • 📱 Responsive - Works beautifully on all devices

🌟 Community


📄 License

MIT © NeoVantis


Built with ❤️ by the NeoVantis team

⭐ Star on GitHub📦 View on npm🔗 Visit NeoVantis