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-authmate

v1.0.2

Published

CLI to create apps with authentication

Downloads

251

Readme

create-authmate

🛡️AuthMate

npm version license maintenance

The fastest way to scaffold a React app with fully configured Authentication.

FeaturesQuick StartStructureRoadmap


📖 Introduction

create-authmate is a powerful CLI tool designed to eliminate the repetitive setup of authentication in React applications.

Instead of spending hours manually configuring Firebase, Supabase, or Clerk, authmate generates a production-ready Vite + React codebase with authentication architecture already implemented.

Why use create-authmate?

  • 🚀 Instant Setup: Generate detailed auth logic in seconds.
  • 🛡️ Best Practices: Secure routing and clean state management.
  • 💎 Polished UI: Professional login/signup/dashboard pages out of the box.

⚡ Features

| Feature | Description | | :--- | :--- | | 🚀 Vite Powered | Built on Vite for lightning-fast HMR and optimized production builds. | | 🔐 Auth Ready | Complete implementation of Sign In, Sign Up, and Sign Out logic. | | Google Auth | Pre-configured Google Sign-In for Firebase & Supabase (requires Google Cloud Console keys). | | 🛡️ Protected Routes | ProtectedRoute components automatically secure private pages. | | 🎨 Modern Design | Clean, responsive UI with CSS variables for easy theming. | | 📱 Responsive | Mobile-first design that looks great on all devices. |


🚀 Quick Start

To create a new project, run the following command in your terminal:

Usage

You can use the CLI interactively or pass arguments directly.

Interactive Mode:

npm create authmate@latest

One-Line Commands:

# Create a Clerk project
npm create authmate authmate-app -- --clerk

# Create a Firebase project
npm create authmate authmate-app -- --firebase

# Create a Supabase project
npm create authmate authmate-app -- --supabase

Interactive Setup

If you run it without arguments, the CLI will guide you:

? Enter project name: authmate-app
? Select authentication provider:
  ❯ Firebase
    Supabase
    Clerk

Post-Installation

  1. Navigate to your project:
    cd authmate-app
  2. Install dependencies:
    npm install
  3. Setup Environment Variables:
    • Open the .env file in the root directory.
    • Add your API keys from your provider's dashboard.
  4. Start coding:
    npm run dev

📂 Project Structure

We provide a clean, scalable architecture that separates concerns logically.

authmate-app/
├── public/
├── src/
│   ├── assets/                # Static assets (images, icons)
│   ├── auth/                  # Authentication provider configuration & logic
│   │   └── authprovider.js  
│   ├── pages/                 # Application views
│   │   ├── Login.jsx
│   │   ├── Register.jsx
│   │   ├── Dashboard.jsx
│   │   └── Home.jsx
│   ├── routes/                # Routing logic
│   │   ├── AppRoutes.jsx      
│   │   └── ProtectedRoute.jsx 
│   ├── App.css                # Global styles
│   ├── index.css              # Base styles and Tailwind/Variables
│   ├── App.jsx                # Main application component
│   └── main.jsx               # Entry point
├── .env                       # Environment variables 
├── package.json
└── vite.config.js

🗺️ Roadmap / Future Scope

We are actively working to expand create-authmate with modern web capabilities.

  • Next.js Support: Full integration with Next.js (App Router) for Server-Side Rendering (SSR) and improved SEO.
  • TypeScript Support: Optional TypeScript templates for robust type safety.
  • Tailwind CSS: Option to generate projects pre-configured with Tailwind CSS.

🤝 Contributing

Contributions are always welcome!

  1. Fork the repository.
  2. Create your feature branch (git checkout -b feature/AmazingFeature).
  3. Commit your changes (git commit -m 'Add some AmazingFeature').
  4. Push to the branch (git push origin feature/AmazingFeature).
  5. Open a Pull Request.

📄 License

This project is licensed under the ISC License.