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

@nextlevel_korea/design-system

v2.1.1

Published

A modern React design system built with TypeScript and Tailwind CSS - The NextLevel Design System

Readme

NextLevel Design System

A modern React design system built with TypeScript and Tailwind CSS, now powered by Next.js.

🚀 Features

  • Next.js 15: Latest Next.js with App Router
  • TypeScript: Full type safety
  • Tailwind CSS: Utility-first CSS framework
  • Responsive Design: Mobile-first approach
  • Customizable Components: Full color and styling customization
  • Storybook: Component documentation and testing

📦 Installation

npm install @nextlevel_korea/design-system

🛠️ Development

Prerequisites

  • Node.js 18+
  • npm or yarn

Setup

  1. Clone the repository:
git clone https://github.com/NextLevel-KR/design-system.git
cd design-system
  1. Install dependencies:
npm install
  1. Start development server:
npm run dev
  1. Open http://localhost:3000 in your browser.

Available Scripts

  • npm run dev - Start development server
  • npm run build - Build for production
  • npm run start - Start production server
  • npm run lint - Run ESLint
  • npm run storybook - Start Storybook
  • npm run build-storybook - Build Storybook

🎨 Components

Header Component

A responsive navigation header with dropdown menus and mobile sidebar.

import Header from '@nextlevel_korea/design-system/components/Header/Header'

const navList = [
  {
    idx: 1,
    name: 'Home',
    path: '/',
  },
  {
    idx: 2,
    name: 'Products',
    path: '/products',
    sub: [
      { idx: 1, name: 'Category 1', path: '/products/category1' },
      { idx: 2, name: 'Category 2', path: '/products/category2' },
    ],
  },
]

<Header
  logo="/logo.png"
  navList={navList}
  eventButton={{
    text: 'Get Started',
    onClick: () => console.log('Button clicked!'),
    className: 'bg-blue-500 text-white hover:bg-blue-600',
  }}
  colors={{
    headerBg: 'bg-white',
    navText: 'text-gray-600',
    navTextHover: 'hover:text-blue-500',
  }}
/>

Footer Component

A flexible footer with sections, social links, and custom styling.

import Footer from '@nextlevel_korea/design-system/components/Footer/Footer';

<Footer
  logo="/logo.png"
  companyInfo={{
    name: 'NextLevel',
    ceo: 'John Doe',
    businessNumber: '123-45-67890',
    phone: '010-1234-5678',
    email: '[email protected]',
    address: '123 Main St, City, Country',
  }}
/>;

🎨 Customization

All components support extensive customization through props:

Color Customization

const customColors = {
  // Background colors
  headerBg: 'bg-white',
  sidebarBg: 'bg-gray-50',

  // Text colors
  navText: 'text-gray-600',
  navTextHover: 'hover:text-blue-500',

  // Accent colors
  primary: 'bg-blue-500',
  primaryDark: 'bg-blue-600',

  // Border colors
  border: 'border-gray-200',

  // Shadow
  shadow: 'shadow-lg',
};

Sidebar Position

<Header
  sidebarPosition="right" // 'left' | 'right'
  // ... other props
/>

📚 Storybook

View all components and their variations in Storybook:

npm run storybook

Then open http://localhost:6006

🔧 Migration from Vite

This project has been migrated from Vite to Next.js for better compatibility and performance. Key changes:

  • App Router: Using Next.js 13+ App Router
  • Server Components: Support for React Server Components
  • Built-in Optimization: Automatic code splitting and optimization
  • Better TypeScript Support: Enhanced TypeScript integration
  • Improved Development Experience: Faster refresh and better error handling

📄 License

MIT License - see LICENSE file for details.

🤝 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

📞 Support

For support and questions, please contact:


Built with ❤️ by NextLevel Team