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

@vinjocarsales/xiao-series

v0.1.2

Published

Reusable tscircuit components for Seeed Studio XIAO ESP32-S3 and ESP32-C3 modules.

Readme

@vinjocarsales/xiao-series

Reusable tscircuit components for the Seeed Studio XIAO ESP32-S3 and ESP32-C3 module family.

Installation

npm install @vinjocarsales/xiao-series @tscircuit/core

Usage

import { XiaoEsp32S3Dip, XiaoEsp32S3Smd } from "@vinjocarsales/xiao-series";

export default () => (
  <board width="45mm" height="35mm">
    <XiaoEsp32S3Dip name="U1" />

    <led name="LED1" footprint="0805" />

    <trace from="U1.D0" to="LED1.anode" />
    <trace from="LED1.cathode" to="U1.GND" />
  </board>
);

Components

  • XiaoEsp32S3Dip — ESP32-S3 XIAO with 2.54mm through-hole DIP pads.
  • XiaoEsp32S3Smd — ESP32-S3 XIAO with castellated SMD pads.
  • XiaoEsp32C3Dip — ESP32-C3 XIAO with 2.54mm through-hole DIP pads.
  • XiaoEsp32C3Smd — ESP32-C3 XIAO with castellated SMD pads.

Each component requires a name prop, extends CommonLayoutProps, and exports a matching hook:

import { useXiaoEsp32S3Dip } from "@vinjocarsales/xiao-series";

const U1 = useXiaoEsp32S3Dip("U1");

Pin Labels

ESP32-S3

| Pin | Label | | ----- | ----- | | pin1 | D0 | | pin2 | D1 | | pin3 | D2 | | pin4 | D3 | | pin5 | D4 | | pin6 | D5 | | pin7 | D6 | | pin8 | D7 | | pin9 | D8 | | pin10 | D9 | | pin11 | D10 | | pin12 | 3V3 | | pin13 | GND | | pin14 | VBUS |

3V3 and VBUS are marked as power pins. GND is marked as ground.

ESP32-C3

| Pin | Label | | ----- | ----- | | pin1 | D0 | | pin2 | D1 | | pin3 | D2 | | pin4 | D3 | | pin5 | D4 | | pin6 | D5 | | pin7 | D6 | | pin8 | D7 | | pin9 | D8 | | pin10 | D9 | | pin11 | D10 | | pin12 | 3V3 | | pin13 | GND | | pin14 | 5V |

3V3 and 5V are marked as power pins. GND is marked as ground.

Footprints

  • DIP variants use two rows of seven plated through-holes.
  • DIP pitch is 2.54mm.
  • DIP row spacing is 17.78mm center-to-center.
  • DIP holes are 1.0mm with 1.8mm outer copper diameter.
  • SMD variants use XIAO-compatible castellated side pads on the top layer.
  • ESP32-C3 variants include a STEP 3D model from assets/xiao-esp32-c3.step.
  • KiCad through-hole footprints can be referenced with kicad: and the LED_THT family, for example kicad:LED_THT/LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm.

3D Models

The ESP32-C3 DIP and SMD components use the bundled STEP model by default:

<XiaoEsp32C3Smd name="U1" />

ESP32-S3 components in this package do not include a bundled STEP model, so XiaoEsp32S3Dip and XiaoEsp32S3Smd will render only the PCB footprint by default.

You can override the model or tune placement with cadModel:

<XiaoEsp32C3Smd
  name="U1"
  cadModel={{
    stepUrl: "https://example.com/xiao-esp32-c3.step",
    zOffsetFromSurface: "0mm",
    rotationOffset: { x: 0, y: 0, z: 0 },
    positionOffset: { x: 0, y: 0, z: 0 },
  }}
/>

Examples

Blink

import { XiaoEsp32S3Dip } from "@vinjocarsales/xiao-series";

export default () => (
  <board width="45mm" height="35mm">
    <XiaoEsp32S3Dip name="U1" pcbX={0} pcbY={0} />

    <led name="LED1" footprint="0805" pcbX={16} pcbY={4} color="red" />

    <resistor name="R1" footprint="0805" resistance="330" pcbX={16} pcbY={-4} />

    <trace from="U1.D0" to="R1.pin1" />
    <trace from="R1.pin2" to="LED1.anode" />
    <trace from="LED1.cathode" to="U1.GND" />
  </board>
);

Button

import { XiaoEsp32C3Dip } from "@vinjocarsales/xiao-series";

export default () => (
  <board width="50mm" height="35mm">
    <XiaoEsp32C3Dip name="U1" pcbX={-6} pcbY={0} />

    <pushbutton
      name="SW1"
      footprint="pushbutton_id1.3mm_od2mm"
      pcbX={17}
      pcbY={0}
    />

    <trace from="U1.D2" to="SW1.pin1" />
    <trace from="SW1.pin2" to="U1.GND" />
  </board>
);

C3 3D Example

import { XiaoEsp32C3Dip } from "@vinjocarsales/xiao-series";

export default () => (
  <board width="50mm" height="35mm">
    <XiaoEsp32C3Dip name="U1" pcbX={-6} pcbY={0} />

    <led name="LED1" footprint="0805" pcbX={16} pcbY={4} color="green" />

    <resistor name="R1" footprint="0805" resistance="330" pcbX={16} pcbY={-4} />

    <trace from="U1.D0" to="R1.pin1" />
    <trace from="R1.pin2" to="LED1.anode" />
    <trace from="LED1.cathode" to="U1.GND" />
  </board>
);

Flashlight

import { XiaoEsp32S3Smd } from "@vinjocarsales/xiao-series";

export default () => (
  <board width="55mm" height="32mm">
    <XiaoEsp32S3Smd name="U1" pcbX={-10} pcbY={0} />

    <led name="LED1" footprint="0805" pcbX={18} pcbY={3} color="white" />

    <resistor name="R1" footprint="0805" resistance="150" pcbX={18} pcbY={-4} />

    <trace from="U1.D10" to="R1.pin1" />
    <trace from="R1.pin2" to="LED1.anode" />
    <trace from="LED1.cathode" to="U1.GND" />
  </board>
);