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

@alchira/scaffold

v0.0.1

Published

Minimally-flavoured Alchira scaffold for small, non-production projects.

Readme

Scaffold: Template to Spin Your Flavor

Use this repository as a template to create your own Alchira frameworks and flavors.

Navigation

Installation

  1. Install prefered flavour of Alchira using your package manager:
  npm install {{package-name}}
  yarn add {{package-name}}
  pnpm add {{package-name}}
  1. Initialize Alchira in your project directory with the installed flavour:
  al init {{package-name}}
  alchira init {{package-name}}

This creates the alchira/* config directory using your chosen flavour.


How to spin your Flavour?

Use this scaffold template as a starting point for your customized CSS framework. Follow the following steps to update.

Setup Steps

1. Clone the Repository

Start by cloning this repository to set up your Alchira scaffold project.

2. Configure for Your Development Setup

The scaffold uses Sass as its CSS compiler, which helps efficiently create and maintain multiple class variations with similar structures. A vanilla JS sketchpad is included for fast previews—you can rewrite it to work with your preferred framework as long as you adhere to the provided API methods and avoid breaking core logic.

3. Customize Template Folders

Adjust the folder structure to suit your project needs. If you do so, be sure to update the corresponding paths in the package.json configuration.

./library
  • Purpose: Houses your custom design libraries (CSS files).
  • Reference: See Libraries documentation for naming conventions and management.
  • Customization: Use your preferred CSS compiler (Sass used here—replace as needed).
./sketchpad
  • Purpose: Live preview area for testing components.
  • Customization: Freely modify to fit your workflow while preserving API compatibility.
  • Configuration: ./alchira/configure.jsonc from working directory is automatically shared with sketchpad-view responses for extended functionality.
./blueprint
  • Purpose: Contains foundational stylesheets, design tokens, and core system components.

Important: Do not modify directory structure. Edit only content within files to maintain Alchira compatibility.

4. Update package.json

Ensure that your package.json file contains correct author and repository details. Also, update the alconfig paths if you change the folder layout:

{
  "alconfig": {
    "name": "scaffold",
    "version": "0.0.0",
    "sketchpad": "sketchpad",
    "blueprint": "blueprint",
    "libraries": "libraries"
  }
}

This configuration connects directly with the alchira tooling. ​

5. Update README.md

Customize the README.md file to reflect your project's specifics. Include:

  • Project description and purpose
  • Setup instructions and usage notes
  • Folder structure explanations and configuration details
  • Contribution guidelines (if open source)
  • License information

6. Publish or Keep Private

Decide whether to publish your scaffold to npm for public use or keep it private for internal projects.