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

@5devs/atomcli

v0.1.1

Published

Scaffold Next.js SaaS starters with landing, dashboard, and Clerk auth

Readme

@5devs/atomcli

Scaffold a Next.js SaaS starter from your terminal — landing page, Clerk auth, and a protected dashboard.

Command: atom
npm package: @5devs/atomcli

Quick start

npx @5devs/atomcli init my-saas
cd my-saas
cp .env.example .env.local   # add your Clerk keys
npm run dev

Or install globally:

npm install -g @5devs/atomcli
atom init my-saas

Open http://localhost:3000.

What you get

  • Public landing page (/)
  • Clerk sign-in / sign-up (/sign-in, /sign-up)
  • Protected dashboard (/dashboard)
  • Next.js 16, React 19, Tailwind v4, TypeScript

Commands

atom --version
atom --help
atom init [name]

Flags

| Flag | Description | | --- | --- | | --skip-install | Skip npm install in the generated project | | --skip-git | Skip git init in the generated project |

Clerk setup

  1. Create an app at dashboard.clerk.com
  2. Copy API Keys into .env.local
  3. Set sign-in URL: /sign-in, sign-up URL: /sign-up, redirect after auth: /dashboard

Development

git clone https://github.com/rapazes/atom-cli.git
cd atom-cli
npm install
npm run build
npm link          # optional: use `atom` globally from this repo

atom init demo-app

Scripts:

| Script | Description | | --- | --- | | npm run dev | Watch build with tsup | | npm run build | Build CLI to dist/ | | npm run typecheck | TypeScript check |

Publishing to npm

The unscoped name atomcli is blocked by npm (too similar to atom-cli). This package is published as @5devs/atomcli. The terminal command remains atom.

npm login
npm whoami          # should show: 5devs
npm run build
npm publish         # publishConfig.access is already "public"

After publish:

npx @5devs/atomcli init my-saas

Publish updates

npm version patch   # or minor / major
npm publish

Common issues

| Problem | Fix | | --- | --- | | 403 Package name too similar to atom-cli | Use scoped name @5devs/atomcli (already set) | | 402 Payment Required | Add "publishConfig": { "access": "public" } (already set) | | You cannot publish over the previously published versions | Bump the version number | | OTP required on publish | Use code from authenticator app: npm publish --otp=123456 |

Install from Git (without npm)

npm install -g github:rapazes/atom-cli
atom init my-saas

License

MIT