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-alistt69-kit

v0.3.7

Published

Opinionated React + TypeScript + Webpack project generator by alistt69

Downloads

608

Readme

One command. Zero config fatigue.
Bootstrap a React + TypeScript + Webpack app with a solid starter setup and optional tooling you can enable when you need it.

npm version Node.js Version npm downloads License: MIT CI

✨ Overview

create-alistt69-kit is a project scaffolding tool for quickly creating a modern frontend app without burning time on repetitive setup.

It generates a ready-to-run React + TypeScript + Webpack starter with a practical baseline and optional extras you can turn on when needed.

🔧 What’s inside

| Tool | Purpose | Included | |------|----------------------------------|----------| | React | Web framework | Default | | TypeScript | Static typing | Default | | Webpack | Bundling and build pipeline | Default | | SCSS Modules | Scoped styling | Default | | SVGR | Import SVGs as React components | Default | | Webpack Bundle Analyzer | Bundle size inspection | Default | | ESLint + eslint-stylistic | Code quality and stylistic rules | Optional | | Stylelint | Stylesheet linting | Optional | | Autoprefixer | Automatic CSS vendor prefixes | Optional | | React Router | Client-side routing | Optional | | AGENTS.md | Root instructions file for AI coding agents | Optional | | Puppeteer + serve-handler | Static HTML prerender after production build | Optional |

🎯 Why use it?

Setting up a frontend project from scratch usually means repeating the same stuff every time:

  • webpack config
  • TypeScript config
  • style handling
  • routing
  • linters
  • folder structure
  • project generators

This starter removes that boilerplate so you can get straight to building.

⚡ Generated project helpers

Some optional features also add local project generators to the scaffolded app.

Page generator

When React Router DOM is enabled, the project includes a built-in page generator.

npm run generate:page about

This will create:

  • src/pages/about/index.ts
  • src/pages/about/lazy.ts
  • src/pages/about/page.tsx

If the standard router files are present, the generator will also register the page automatically in:

  • src/app/providers/router/types/index.ts
  • src/app/providers/router/model/config/index.ts
  • src/app/providers/router/model/router/index.tsx

If prerender is enabled, the generator also configure the new route for it automatically.

You can customize generator targets inside scripts/generate/page.mjs:

  • ROUTER_TYPES_PATH
  • ROUTER_CONFIG_PATH
  • ROUTER_FILE_PATH
  • PRERENDER_ROUTES_PATH

Please note, that route auto-registration relies on special marker comments @route-... & @prerender-... inside the router files. Do not remove these markers unless you want to disable automatic updates!

🌟 Prerender

When Prerender is enabled, the generated project gets a postbuild prerender step powered by Puppeteer.

Files:

  • prerender.routes.mjs
  • scripts/prerender.mjs

Example prerender.routes.mjs:

export default async function getPrerenderRoutes() {
    return [
        '/',
        '/about',
        // @prerender-routes
    ];
}

Useful commands inside the generated project:

# Builds webpack assets only
npm run build:assets

# Renders configured routes into static HTML
npm run prerender

# Runs build:assets && prerender
npm run build

📦 Requirements

  • Node.js 18.18 or higher
  • npm, pnpm, or yarn

🔥 Quick start

Create a new app interactively:

npm create alistt69-kit@latest

Follow the prompts — or skip them entirely:

npm create alistt69-kit@latest my-app -- --defaults

🛠️ Usage examples

# Interactive setup
npm create alistt69-kit@latest my-app

# All defaults, no prompts
npm create alistt69-kit@latest my-app -- --defaults

# Skip dependency installation
npm create alistt69-kit@latest my-app -- --no-install

# Enable only selected features
npm create alistt69-kit@latest my-app -- --features=eslint,react-router

# Enable all optional features
npm create alistt69-kit@latest my-app -- --features=all

# Use pnpm as package manager
npm create alistt69-kit@latest my-app -- --pm pnpm

# Overwrite existing directory
npm create alistt69-kit@latest my-app -- --defaults --overwrite

⚙️ CLI options

| Option | Alias | Description | |---------------------|--------|-------------| | --defaults | -def | Skip prompts, use defaults | | --overwrite | — | Overwrite target directory if it exists | | --no-install | — | Skip dependency installation | | --features <list> | — | Enable specific features (agents-md, eslint, stylelint, autoprefixer, react-router, prerender) | | --pm <name> | — | Choose package manager (npm, pnpm, yarn) | | --help | -h | Show help |

🧪 Default behavior

  • All features are enabled by default
  • Package manager: npm (can be overridden with --pm)
  • Dependencies are installed automatically (skip with --no-install)

📄 License

MIT — free and open for everyone.

See LICENSE.