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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@viget/parts-kit

v0.2.1

Published

**Table of Contents**

Downloads

45

Readme

Decoupled Parts Kit proof of concept

Table of Contents

This is a proof of concept for a decoupled/build-free/headless parts kit (still trying to figure out what to call it).

What does that mean exactly?

There are two sides to this idea. First, your app is responsible for rendering components in your template language of choice. Second, the parts kit provides the UI to view those components in a "Storybook-esque" experience. No additional tooling or build steps required.

Storybook is awesome! But... it doesn't have first-party support for Twig, ERB or other template formats that CMS and application frameworks commonly use.

While third-party plugins do exist, they often adds extra layers of abstraction, or use a JavaScript template renderer that isn't a 1:1 match to the actual PHP or Ruby app.

While all of these tools are awesome and are well suited for certain projects, this parts kit takes things in a different direction:

  • No build tools needed - Paste a CDN hosted script, write a JSON file. Your CMS or App handles component rendering.
  • Low abstraction - The parts kit uses standard web concepts (script files, JSON, web components, etc). It should be possible to get a basic parts kit up and running without boilerplate.
  • One to one rendering between parts and app - Because your app is rendering these components, you can be confident that you are testing the same component and features that you're using in your app.

Use on your project!

All it takes is two lines to have a decoupled parts kit in your project.

Include the CDN hosted script and configure the <parts-kit> custom element with the URL to your Config JSON file.

In the future, we'll have CMS plugins that automatically setup and configure of your parts kit.

<script
  type="module"
  src="https://unpkg.com/@viget/parts-kit@^0/lib/parts-kit.js"
></script>
<parts-kit config-url="/path/to/config.json"></parts-kit>

Key Concepts

Diagram of decoupled parts kit

The Config JSON file

The config JSON file contains a nested tree of pages and other config options that could arise.

You could either write this JSON by hand, or your CMS of choice could have a plugin created to create this JSON on the fly.

Note: You should use the proper file extension (e.g. .html) based on the framework you have chosen.

{
  "schemaVersion": "0.0.1",
  "nav": [
    {
      "title": "Buttons",
      "children": [
        {
          "title": "Primary",
          "url": "/parts-kit/button/primary.html"
        },
        {
          "title": "Disabled",
          "url": "/parts-kit/button/disabled.html"
        }
      ]
    },
    {
      "title": "Cards",
      "children": [
        {
          "title": "Basic Card",
          "url": "/parts-kit/cards/basic.html"
        }
      ]
    }
  ]
}

CMS or App Rendered Components

The CMS or App renders the content. All it needs to do is provide urls for each part. These URLS render the CSS, JS and Markup for a part.

It is optional for a CMS to generate a Navigation JSON file. But for commonly used platforms, it would make sense to automate this.

Parts Kit

The parts kit reads the Navigation JSON file and creates a nav.

When a nav item is clicked, an <iframe> in the parts kit loads the URLs listed in the Nav file.

The <iframe> isolates projects styles and scripts from the parts kits. It also makes it easy to emulate screen sizes and test the responsive behaviors of your components.

Possible Features

Parts Kit

Required

  • Loads a JSON file that builds the parts kit navigation.
  • On clicking a nav item Loads the part URL within an <iframe>

Optional

  • URLS are updated, so you can link to a specific part
  • Screen size emulation
  • Multiple frame sizes at once (like Responsively)
  • Editable text / images with JavaScript that inserts contenteditable attributes .
  • Can parse the URL that the CMS provides and pull out copy/pastable snippets.
  • If the CMS provides a .md file, will render and style the documentation
  • Expanding a nav item auto-selects the first child with a URL
  • 3+ levels of navigation.
Styles
- Colors
-- Colors
- Typography
-- Headings
-- Rich Text

Components
- Buttons
-- Primary
-- Secondary

CMS Plugin

Required

  • Provides a URL to render individual parts.

Optional

  • Generates JSON for the parts kit navigation.
  • Provides a /parts-kit url that inserts loads JavaScript for parts kit.
  • Automatically inserts any JavaScript for turning on contenteditable or copy/paste of snippets.
  • Helpers for dummy text and images (some of this already exists in craft-viget-base)

Contribute to this project

Create a feature branch from main. When your feature is ready, submit a PR pointed at main.

Check our Github Project to see what features you can contribute to (or submit feature requests).

Run locally

You must have Node 18+ installed on your machine.

npm run dev

Deploy NPM package

For deployments, we let commits build up on main. When we're ready for a release, authenticate via npm login from your command line using the Viget NPM account, then run npm run deploy. It runs a build-lib script and then uses np to automatically tag a release, update package.json and publish to NPM.

We use unpkg.com as our CDN. Deploying a new version of the NPM package will automatically publish the script to our various app implementations.

Unpkg URLs can use semver, so a minor release will automatically be deployed to projects using the current version of parts-kit.

Deploy to Github Pages

The demo page for this project uses GitHub Pages and can be manually updated by running npm run gh-pages while on main.