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

create-vanilla-spa

v1.1.0

Published

Scaffold a Single-Page Application (SPA) built with vanilla JavaScript.

Readme

create-vanilla-spa

Scaffold a Single-Page Application (SPA) built with vanilla JavaScript and Vite.

Quick Start

Scaffold a new project with:

npm create vanilla-spa@latest spa-project
cd spa-project

This downloads the vanilla-spa template into spa-project. Then continue below to finish setup.

Leave off the directory name to scaffold into the current folder instead:

npm create vanilla-spa@latest

Getting Started

npm install
npm run dev

Other available scripts, once inside the generated project:

npm run build      # production build to dist/
npm run preview    # preview the production build locally

Project Structure

index.html               # HTML entry point, mounts #app
src/
  main.js                # Entry point - creates the SPA instance and registers routes
  core/
    spa.js               # Router: route matching, history, link click handling
    useState.js          # Minimal reactive state helper (get, set, subscribe)
  layouts/
    default.js           # Shared header/main/footer shell used by pages
  pages/                 # Route handlers - build a layout and mount components into it
  components/            # UI pieces, one folder per component (main.js + component.module.css, event.js)
  store/                 # App-wide state created with useState
  lib/                   # Third-party client setup (e.g. axios)
  styles/                # Global CSS
  assets/                # Static assets bundled by Vite
public/                  # Static assets served as-is

Routing

Routes are registered in src/main.js:

app.add('/', HomePage)
app.add(/\/pages\/(?<id>\d+)/i, Page)

A path can be a string (exact match) or a RegExp (supports named capture groups, passed to the page as params). defaultRoute in the SPA config handles unmatched paths (404). Internal link clicks are intercepted automatically and pushed through history.pushState, no full page reload.

State

useState returns a [get, set, subscribe] tuple, similar in spirit to a signal:

import { useState } from '../core/useState'

export const [count, setCount] = useState(0)

Call subscribe(fn) to re-run fn whenever the value changes, useful for updating the DOM from a component without a virtual DOM diff.