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-era-next

v0.0.2

Published

Scaffold a modern Electron + React + Vite + TypeScript app — the next-generation replacement for electron-react-boilerplate (ERB). Ships typed IPC, auto-updates, electron-store or SQLite storage, Axios + React Query, Tailwind, i18n, tests, and a full rele

Downloads

279

Readme

create-era-next

Modern Electron + React + Vite + TypeScript boilerplate. The next-generation replacement for electron-react-boilerplate (ERB).

npm create era-next@latest my-app
# or
npx create-era-next my-app

What you get

  • Electron 41, Vite 7, React 19, TypeScript 5.9
  • electron-vite for the main/preload/renderer build (HMR, fast reload)
  • Type-safe IPC — one contract file, compile-time checks everywhere
  • Storage — choose at scaffold time: electron-store or better-sqlite3
  • Axios + TanStack Query v5 with Devtools, interceptors, and example feature
  • Auto-updates via electron-updater + GitHub Releases (release workflow included)
  • Tailwind CSS 4, React Router v7 or TanStack Router (pick when you scaffold), i18next (en + hi)
  • Vitest unit tests + Playwright e2e smoke test
  • oxlint + oxfmt or Prettier (pick when you scaffold) + Husky + lint-staged
  • GitHub Actions: CI + 3-OS release matrix (macOS / Windows / Linux)

CLI

npx create-era-next <project-name> [options]

Options:
  --storage <kind>       Storage backend: electron-store | sqlite
  --router <kind>        Renderer router: react-router-dom | tanstack-router
  --formatter <kind>     Code formatter: oxfmt | prettier
  --pm <name>            Package manager: npm | pnpm | yarn | bun
  --github-owner <owner> GitHub owner for auto-update publish config
  --github-repo <repo>   GitHub repo name
  --no-git               Skip git initialization
  --no-install           Skip dependency installation
  -y, --yes              Accept defaults, no prompts
  --template <dir>       Path to a local template (developer mode)
  -v, --version          Show version
  -h, --help             Show help

After scaffolding

cd my-app
npm run dev

The generated project ships with a docs/ folder covering:

  • Getting started & architecture
  • Adding a typed IPC channel
  • Storage (both backends)
  • Axios + React Query patterns
  • i18n
  • Building + packaging
  • Auto-update pipeline
  • Migration from ERB

Why create-era-next?

| Feature | create-era-next | ERB | | ------------------- | -------------------------------- | ---------- | | Bundler | Vite 7 via electron-vite | Webpack 5 | | Dev HMR | < 1s | 10–30s | | IPC typing | Compile-time safe contract | — (manual) | | Storage | electron-store OR SQLite | — (DIY) | | React Query / Axios | Pre-wired + Devtools | — (DIY) | | Auto-update | Hook + UI + release workflow | Partial | | i18n | i18next (en + hi) | — | | Testing | Vitest + Playwright | Jest |

License

MIT