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

@rip-tear/moraxa-ui

v0.1.17

Published

<div align="center">

Downloads

11

Readme

Moraxa UI

🎮 Nowoczesna biblioteka komponentów React z futurystycznym designem inspirowanym motywami gaming i sci-fi.

npm version npm downloads

✨ Funkcje

  • 🎨 Trzy motywy kolorystyczne: Tear (czerwony), BFG (zielony), Plasma (niebieski)
  • 🎮 Gaming design: Inspirowany estetyką gier i interfejsów sci-fi
  • 📱 Responsive: Automatyczne skalowanie na urządzeniach mobilnych
  • Dostępność: Pełne wsparcie dla screen readerów i nawigacji klawiaturą
  • 🎯 TypeScript: Pełne wsparcie typów
  • 🔧 Customizable: Łatwe nadpisywanie CSS variables
  • 📦 Tree-shakable: Importuj tylko to czego potrzebujesz

📦 Instalacja

# npm
npm install @rip-tear/moraxa-ui

# pnpm
pnpm add @rip-tear/moraxa-ui

# yarn
yarn add @rip-tear/moraxa-ui

🚀 Szybki start

// main.tsx
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import '@rip-tear/moraxa-ui/index.css';

ReactDOM.createRoot(document.getElementById('root')!).render(<App />);
// App.tsx
import { Button, Theme, Block } from '@rip-tear/moraxa-ui';

export default function App() {
  return (
    <Theme>
      <Block>
        <h1>Witaj w Moraxa UI</h1>
        <div style={{ display: 'flex', gap: '1rem' }}>
          <Button>Domyślny</Button>
          <Button theme="bfg">BFG</Button>
          <Button theme="plasma" isLoading>Ładowanie</Button>
        </div>
      </Block>
    </Theme>
  );
}

🎨 Komponenty

Button

Wszechstronny przycisk z animacjami i trzema motywami.

<Button 
  theme="tear" 
  size={24}
  leftIcon={<FlameIcon />}
  isLoading={false}
  onClick={() => console.log('Clicked!')}
>
  Kliknij mnie
</Button>

Input

Stylowy input z walidacją i różnymi wariantami.

<Input 
  placeholder="Wprowadź tekst..."
  theme="plasma"
  error="To pole jest wymagane"
/>

Select

Dropdown z customowym stylingiem.

<Select 
  options={[
    { value: '1', label: 'Opcja 1' },
    { value: '2', label: 'Opcja 2' }
  ]}
  theme="bfg"
/>

Table

Tabela z sortowaniem i paginacją.

<Table 
  data={data}
  columns={columns}
  theme="tear"
  sortable
/>

Modal

Responsywne okno modalne.

<Modal 
  isOpen={isOpen}
  onClose={() => setIsOpen(false)}
  title="Tytuł"
>
  Zawartość modala
</Modal>

Navbar & Sidebar

Komponenty nawigacyjne.

<Navbar 
  brand="Moraxa"
  items={navItems}
  theme="plasma"
/>

<Sidebar 
  items={sidebarItems}
  isCollapsed={false}
/>

🎮 Motywy

Tear (Domyślny)

Czerwony motyw inspirowany klasycznymi grami FPS.

BFG

Zielony motyw przypominający interfejsy wojskowe.

Plasma

Niebieski motyw w stylu sci-fi.

// Używanie motywów
<Button theme="tear">Czerwony</Button>
<Button theme="bfg">Zielony</Button>
<Button theme="plasma">Niebieski</Button>

🎯 Ikony

Biblioteka zawiera zestaw ikon dopasowanych do designu:

import { 
  FlameIcon, 
  UserIcon, 
  SettingsIcon,
  ArrowLeftIcon,
  DashboardIcon 
} from '@rip-tear/moraxa-ui';

<Button leftIcon={<FlameIcon />}>
  Z ikoną
</Button>

📱 Responsive Design

Wszystkie komponenty automatycznie skalują się na urządzeniach mobilnych:

// Automatyczne zmniejszanie czcionek na mobile
.fs-24 { 
  font-size: 24px; 
  @media (max-width: 768px) { 
    font-size: 20px; 
  } 
}

🎨 Customizacja

CSS Variables

:root {
  --color-red: #ff2e5f;
  --color-green: #00ff7f;
  --color-blue: #00bfff;
  --bg-primary: #0a0a0a;
  --text-primary: #ffffff;
}

SASS Variables

$themes: (
  tear: #ff2e5f,
  bfg: #00ff7f,
  plasma: #00bfff
);

♿ Dostępność

  • Pełne wsparcie dla screen readerów
  • Nawigacja klawiaturą
  • Wysokie kontrasty kolorów
  • ARIA labels i role
  • Focus management

📚 Storybook

Sprawdź wszystkie komponenty w akcji:

pnpm storybook

🔧 Development

# Klonowanie
git clone https://github.com/RIP-Tear/moraxa-ui.git

# Instalacja zależności
pnpm install

# Development
pnpm dev

# Build
pnpm build

# Testy
pnpm test

📄 Licencja

MIT © RIP-Tear

🤝 Wsparcie