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

@codedgar/puppertino

v1.0.0

Published

A CSS framework based on Human Guidelines from Apple

Downloads

19

Readme

Puppertino Stars Puppertino's contributors Follow Puppertino_css Follow Codedgar_dev Visit the creator's Website Puppertino Logo

Welcome to Puppertino Siberian by Codedgar

Welcome to Puppertino! This framework brings the macOS look and feel to your web applications, adhering closely to Apple’s Human Interface Guidelines. Designed to be lightweight and modular, Puppertino provides a seamless user experience with a focus on performance and style.

Key Framework Features

  • Lightweight: Puppertino is built with performance in mind. By avoiding unnecessary additions or dependencies, Puppertino ensures your website or app remains fast and responsive. You get the macOS-inspired design without compromising on speed and efficiency.
  • Modular: Flexibility is at the heart of Puppertino. Whether you need the entire framework or just specific components, you can pick and choose what fits your project. This modular approach allows you to minimize the size of your website, ensuring that you only include what’s necessary.
  • Design-Focused: Puppertino is not just about functionality—it’s about looking cool too! Inspired by macOS, the framework prioritizes a sleek and modern design, with room for creative enhancements beyond macOS guidelines when needed.

Table of contents

Get Started

To integrate Puppertino into your project, simply include the full.css file in your HTML head tag:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/codedgar/Puppertino@latest/dist/css/newfull.css">

Customize your setup

If you only need specific components, you can import them individually to reduce file size. Here’s how you can include only the buttons:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/codedgar/Puppertino@latest/dist/css/buttons.css">

You can also find the full list of individual components and their CDN links on the Components page.

NPM

You can install Puppertino through NPM directly from the GitHub repository:

# Via NPM (recommended)
npm install @codedgar/puppertino@github:codedgar/Puppertino

# Or install from a specific branch
npm install @codedgar/puppertino@github:codedgar/Puppertino#master

# Via SSH
npm install git+ssh://[email protected]/codedgar/Puppertino.git

# Via HTTPS
npm install https://github.com/codedgar/Puppertino.git

Usage after installation

Once installed, you can import Puppertino in several ways depending on your build setup:

Import the full framework:

// In JavaScript/TypeScript
import '@codedgar/puppertino'

// In CSS
@import '@codedgar/puppertino';

Import individual components (modular approach):

// Import only what you need
import '@codedgar/puppertino/buttons'
import '@codedgar/puppertino/modals'
import '@codedgar/puppertino/forms'
import '@codedgar/puppertino/tabs'

Import JavaScript modules:

// ES6 imports
import '@codedgar/puppertino/js/modals.js'
import '@codedgar/puppertino/js/dakmode_manager.js'
import '@codedgar/puppertino/js/tabs.js'

// CommonJS require
const modals = require('@codedgar/puppertino/src/js/modals.js')

Direct CSS imports:

/* Import full framework */
@import '@codedgar/puppertino';

/* Or import individual components */
@import '@codedgar/puppertino/buttons';
@import '@codedgar/puppertino/modals';
@import '@codedgar/puppertino/dark-mode';

Current Components

Puppertino currently includes the following components:

  • Buttons (Push, Icon, Action)
  • Modals
  • Forms and Inputs
  • Layout
  • Official Apple Colors
  • Segmented Controls
  • Shadows & Blur
  • Tabs
  • Navigation Bars
  • Dark Mode Manager

For a full list and detailed usage instructions, check out the Components page.

If you can't find a component that you want, you can always create an issue to vote for the new components.

Examples and templates

Find detailed examples and templates to help you get started quickly with Puppertino.

Explore the examples at Puppertino Examples.

License

Puppertino is open-source and available under the open-source MIT license, allowing you to freely use and modify the framework for your projects.

Contributing

We welcome contributions! If you’d like to contribute to Puppertino, check out the Contribution Guidelines to learn how to get involved.

About the creator

Puppertino was developed by Codedgar, a web developer passionate about creating clean, elegant web experiences. As the framework continues to evolve, more features and components will be added—so stay tuned for regular updates!