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

@coresystems/create

v2.0.0

Published

CLI wizard for scaffolding coresystems packages and apps

Downloads

1,575

Readme

@coresystems/create

CLI wizard for scaffolding projects with coresystems configs pre-wired.

Usage

# pnpm
pnpm create @coresystems

# npm
npm create @coresystems@latest

# yarn
yarn create @coresystems

The wizard prompts for:

  1. Project name — used as the directory name and base of the package name
  2. Scope — whether to prefix with @coresystems/
  3. Templatereact-app, ui-lib, or util-lib
  4. Output path — defaults to ./<name>
  5. Package managerpnpm (default), npm, or yarn
  6. Styling — CSS, SCSS, or none (react-app and ui-lib only)
  7. Testing — Vitest or none
  8. Git repository — optionally runs git init in the output directory
  9. Install dependencies — optionally runs install immediately

For react-app, if dependencies are installed the dev server is launched automatically with the browser opened.

Templates

react-app — React Application

React 19 + TypeScript + Vite. Generated files:

| File | Description | | ----------------------------- | -------------------------------------------------------- | | package.json | scripts, deps, devDeps | | index.html | HTML entry with favicon | | tsconfig.json | extends @coresystems/config-typescript/react.json | | vite.config.ts | @coresystems/config-vite (react-app preset, port 5173) | | eslint.config.ts | @coresystems/config-eslint (react preset) | | commitlint.config.ts | @coresystems/config-commitlint | | stylelint.config.ts | @coresystems/config-stylelint (if styling selected) | | .stylelintignore | standard ignores (if styling selected) | | .prettierrc.json | @coresystems/config-prettier | | .lintstagedrc.json | @coresystems/config-lint-staged | | .husky/pre-commit | runs lint-staged | | .husky/commit-msg | runs commitlint | | .editorconfig | standard editor settings | | .prettierignore | standard ignores | | .gitignore | Vite-style ignores | | public/favicon-32x32.png | coresystems favicon | | public/apple-touch-icon.png | coresystems touch icon | | src/index.tsx | React entry point (skipped if already exists) | | src/app/index.tsx | root App component (skipped if already exists) |

ui-lib — UI Component Library

Vite lib mode for publishing React component packages. Generated files:

| File | Description | | ---------------------- | ----------------------------------------------------- | | package.json | scripts, peer deps (react, react-dom), devDeps | | tsconfig.json | extends @coresystems/config-typescript/react.json | | vite.config.ts | @coresystems/config-vite (react-lib preset) | | eslint.config.ts | @coresystems/config-eslint (react preset) | | commitlint.config.ts | @coresystems/config-commitlint | | stylelint.config.ts | @coresystems/config-stylelint (if styling selected) | | .stylelintignore | standard ignores (if styling selected) | | .prettierrc.json | @coresystems/config-prettier | | .lintstagedrc.json | @coresystems/config-lint-staged | | .husky/pre-commit | runs lint-staged | | .husky/commit-msg | runs commitlint | | .editorconfig | standard editor settings | | .prettierignore | standard ignores | | .gitignore | standard ignores | | src/index.ts | entry point (skipped if already exists) |

util-lib — Utility Library

Pure TypeScript publishable package (no React, no Vite). Generated files:

| File | Description | | ---------------------- | ------------------------------------------------- | | package.json | scripts, devDeps | | tsconfig.json | extends @coresystems/config-typescript/lib.json | | eslint.config.ts | @coresystems/config-eslint (node preset) | | commitlint.config.ts | @coresystems/config-commitlint | | .prettierrc.json | @coresystems/config-prettier | | .lintstagedrc.json | @coresystems/config-lint-staged | | .husky/pre-commit | runs lint-staged | | .husky/commit-msg | runs commitlint | | .editorconfig | standard editor settings | | .prettierignore | standard ignores | | .gitignore | standard ignores | | src/index.ts | entry point (skipped if already exists) |

Sync wizard

Updates an existing project's tooling configs to the latest coresystems standards.

# pnpm
pnpm dlx @coresystems/create --sync

# npm
npx @coresystems/create --sync

# yarn
yarn dlx @coresystems/create --sync

The wizard will:

  1. Ask for the target directory (defaults to .)
  2. Auto-detect package manager, project type, and styling from existing files
  3. Scan all config files and display their status: ✓ synced / ~ outdated / ✕ missing
  4. List packages to remove (obsoleted third-party configs) and packages to add (missing coresystems packages)
  5. Ask for confirmation before applying changes
  6. Optionally install dependencies after syncing

What gets synced

| Config | Target file | | ---------------- | ------------------------------------------------- | | ESLint | eslint.config.ts | | TypeScript | tsconfig.json | | Prettier | .prettierrc.json | | lint-staged | .lintstagedrc.json | | commitlint | commitlint.config.ts | | Stylelint | stylelint.config.ts (react-app and ui-lib only) | | Stylelint ignore | .stylelintignore (react-app and ui-lib only) | | Vite | vite.config.ts (react-app and ui-lib only) | | Husky hooks | .husky/pre-commit, .husky/commit-msg | | Editor config | .editorconfig | | Prettier ignore | .prettierignore |