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

@cadit-app/maker-chips

v0.2.4

Published

Customizable maker chip generator with patterns and embedded QR codes

Downloads

372

Readme

@cadit-app/maker-chips

Generate customizable maker chips with various patterns and optional embedded QR codes. Perfect for multi-color 3D printing.

Makerchip Maker Preview

Features

  • 20 Pattern Styles: Choose from a variety of decorative chip patterns
  • Customizable Dimensions: Adjust radius, height, and edge rounding
  • Center Circle: Add a center circle for additional customization
  • Multi-Color 3D Printing: 3MF export with separate parts for multi-extruder printers
  • Assembly Modes: Flat preview or assembled for printing
  • CLI Support: Generate models directly from the command line

Usage

Open in CADit

Open this design in CADit to customize and generate your maker chip with a visual interface.

Command Line

Generate 3D models directly from the command line:

# Install dependencies
pnpm install

# Generate a .glb file (3D model)
pnpm build:glb

# Generate a .3mf file (for multi-color 3D printing)
pnpm build:3mf

# Generate with custom parameters
npx tsx cli.ts my-chip.glb --radius 25 --markings makerChipV5
npx tsx cli.ts my-chip.3mf --markings makerChipV10 --assembly printable

CLI Options

Usage:
  npx tsx cli.ts <output.[glb|3mf]> [options]

Output Formats:
  .glb   3D model (GLTF binary)
  .3mf   3D model for multi-color printing

Options:
  -r, --radius <number>        Chip radius in mm (default: 20)
  -h, --height <number>        Extrusion height in mm (default: 3)
  --rounding <number>          Edge rounding radius in mm (default: 1)
  --center-radius <number>     Center circle radius in mm (default: 14)
  -a, --assembly <type>        Assembly type: flat or printable (default: flat)
  -m, --markings <pattern>     Pattern style (default: makerChipV1)
  --help                       Show this help

Examples:
  npx tsx cli.ts chip.glb
  npx tsx cli.ts chip.3mf --markings makerChipV5 --radius 25
  npx tsx cli.ts chip.glb -m makerChipV10 -a printable

Available Patterns

The following pattern styles are available:

makerChipV1, makerChipV2, makerChipV3, makerChipV4, makerChipV5, makerChipV6, makerChipV7, makerChipV8, makerChipV9, makerChipV10, makerChipV11, makerChipV12, makerChipV13, makerChipV14, makerChipV15, makerChipV16, makerChipV17, makerChipV18, makerChipV19, makerChipV20

Parameters

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | radius | number | 20 | Chip radius in millimeters | | height | number | 3 | Extrusion height in millimeters | | roundingRadius | number | 1 | Edge rounding radius in millimeters | | centerCircleRadius | number | 14 | Center circle radius in millimeters | | assemblyType | choice | flat | Assembly mode: flat (preview) or printable | | markings | buttonGrid | makerChipV1 | Pattern style selection |

Multi-Color Printing

The 3MF export includes separate parts assigned to different extruders:

  • Part 1: Base disk (Extruder 1)
  • Part 2: Center circle (Extruder 2)
  • Part 3: Pattern/marking (Extruder 3)

This works with slicers like Bambu Studio, PrusaSlicer, and Cura.

Attribution

This project is based on Makerchip Maker Chip by K2_Kevin.

The original maker chip designs were manually converted to SVG and used as a starting point for this parametric generator.

License: CC BY-NC-SA 4.0