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

kaff-components

v1.0.8

Published

Design System Library berbasis JavaScript menggunakan Tsup

Downloads

742

Readme

🎨 Tema VisualMinimalis & Konsisten: Berfokus pada kejelasan antarmuka dengan penerapan prinsip styled design pada warna, spacing, dan typography untuk menciptakan UI yang bersih dan modern.

📦 Instalasi Gunakan npm untuk menginstal library ini ke dalam proyek Anda:Bashnpm install kaff-components@latest

🚀 Penggunaan (Usage) Library ini mengembalikan objek HTML asli (HTMLElement). Untuk menggunakannya di framework modern seperti React, gunakan useRef dan appendChild untuk merender komponen ke dalam DOM.1. Implementasi Layout & NavigasiBerikut adalah contoh penggunaan komponen Navbar, Sidebar, dan Button dalam satu dashboard interaktif:JavaScript

import { useEffect, useRef, useState } from 'react'; import { Navbar, Sidebar, Button } from 'kaff-components';

function App() { const [active, setActive] = useState('dashboard'); const navRef = useRef(null); const sideRef = useRef(null); const contentRef = useRef(null);

useEffect(() => { // Render Navbar dengan Kustomisasi if (navRef.current) { navRef.current.innerHTML = ''; navRef.current.appendChild(Navbar({ brand: 'Kaff Design System', backgroundColor: '#007bff', links: [] })); }

// Render Sidebar & Logika Navigasi
if (sideRef.current) {
  sideRef.current.innerHTML = '';
  const sidebarElement = Sidebar({ 
    items: ['Button', 'Input', 'Card'],
    activeColor: '#333'
  });
  sideRef.current.appendChild(sidebarElement);

  // Event Listener untuk Navigasi Antar Komponen
  sidebarElement.querySelectorAll('div').forEach(item => {
    item.onclick = () => setActive(item.innerText.toLowerCase());
  });
}

}, []);

return ( <div style={{ display: 'flex', flexDirection: 'column', height: '100vh' }}> <div style={{ display: 'flex', flex: 1 }}> <main style={{ flex: 1, padding: '20px', background: '#121212', color: 'white' }}> Preview: {active.toUpperCase()} ); }

🛠️ Komponen Tersedia (API) Library ini mendukung kustomisasi penuh melalui props pada setiap komponennya:KomponenProperti / ParameterFungsiNavbarbrand, links, backgroundColor, textColorNavigasi bar bagian atas dengan dukungan tautan.Sidebaritems, width, activeColorNavigasi samping dengan efek hover kustom.Containerchildren, maxWidth, paddingPembungkus tata letak agar konten tetap simetris di tengah.Buttontext, colorTombol aksi utama dengan berbagai varian warna.Badgelabel, colorLabel penanda status atau informasi versi.

🛡️ Keamanan & DistribusiTwo-Factor Authentication (2FA): Setiap proses publikasi ke registry npm diverifikasi menggunakan Security Key/Passkey (PIN atau Biometrik perangkat Windows) untuk menjamin keamanan kode.Semantic Versioning: Mengikuti standar penomoran versi (Major.Minor.Patch) untuk menjaga stabilitas ketergantungan antar proyek.

🏗️ Struktur Folder Proyeksrc/components/: Berisi logika utama komponen yang ditulis dalam TypeScript.dist/: Berisi file hasil kompilasi yang siap digunakan di lingkungan produksi (.js, .mjs, .d.ts).

Dibuat oleh Fillah - STIKOM PGRI Banyuwangi.