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

nbd-app

v1.0.6

Published

๐Ÿš€ CLI tool to scaffold full-stack authentication starter projects with React, Node.js, and multiple auth providers (Email, Google, and more)

Readme

nbd-app ๐Ÿš€

nbd-app is a powerful CLI tool that scaffolds production-ready, full-stack authentication starter projects. Get up and running in seconds with React, Node.js, Express, Tailwind CSS, and multiple authentication providers.

npm version License: MIT


โœจ Features

  • ๐ŸŽฏ Multiple Auth Options: Email verification, Google OAuth, and more
  • โšก Lightning Fast: Vite + React for blazing fast development
  • ๐ŸŽจ Beautiful UI: Pre-configured Tailwind CSS styling
  • ๐Ÿ”’ Production Ready: Security best practices built-in
  • ๐Ÿ› ๏ธ Full Stack: Complete frontend + backend setup
  • ๐Ÿ“ฑ Responsive: Mobile-first design approach
  • ๐Ÿš€ Zero Config: Works out of the box

๐Ÿš€ Quick Start

Run directly (recommended):

npx nbd-app@latest

โŒ Don't install globally (to always get the latest version)

๐ŸŽฏ Interactive Setup

The CLI will guide you through:

  1. Project Name - Your project folder name
  2. Package Name - NPM package name
  3. Language - JavaScript (TypeScript coming soon)
  4. Framework - React JS (Next.js coming soon)
  5. Auth Template - Choose your authentication setup

๐Ÿ“‹ Available Templates

๐Ÿ” Authentication Options

  • Email + Google - Complete auth with email verification and Google OAuth
  • Email Only - Traditional email/password with verification
  • Google Only - Simple Google OAuth login

๐Ÿ”ฎ Coming Soon

  • Facebook, GitHub, Twitter OAuth
  • TypeScript support
  • Next.js templates
  • Database integrations (MongoDB, PostgreSQL)

๐Ÿ› ๏ธ Tech Stack

Frontend

  • React 18 - Modern React with hooks
  • Vite - Super fast build tool
  • Tailwind CSS - Utility-first CSS framework
  • React Router - Client-side routing

Backend

  • Node.js - JavaScript runtime
  • Express.js - Web framework
  • JWT - JSON Web Tokens for auth
  • Bcrypt - Password hashing
  • Nodemailer - Email service

๐Ÿ“ Project Structure

your-project/
โ”œโ”€โ”€ frontend/
โ”‚   โ”œโ”€โ”€ src/
โ”‚   โ”‚   โ”œโ”€โ”€ components/
โ”‚   โ”‚   โ”œโ”€โ”€ pages/
โ”‚   โ”‚   โ”œโ”€โ”€ utils/
โ”‚   โ”‚   โ””โ”€โ”€ App.jsx
โ”‚   โ”œโ”€โ”€ public/
โ”‚   โ””โ”€โ”€ package.json
โ”œโ”€โ”€ backend/
โ”‚   โ”œโ”€โ”€ routes/
โ”‚   โ”œโ”€โ”€ middleware/
โ”‚   โ”œโ”€โ”€ models/
โ”‚   โ”œโ”€โ”€ controllers/
โ”‚   โ””โ”€โ”€ server.js
โ”œโ”€โ”€ .env.example
โ””โ”€โ”€ README.md

๐Ÿš€ Getting Started

After creating your project:

# Navigate to your project
cd your-project-name

# Install dependencies
npm install

# Configure environment variables
cp .env.example .env
# Edit .env with your credentials

# Start development servers
npm run dev

๐Ÿ”ง Configuration

Environment Variables

# Database
DATABASE_URL=your_database_url

# JWT
JWT_SECRET=your_jwt_secret

# Email Service
[email protected]
EMAIL_PASS=your_email_password

# Google OAuth (if using Google auth)
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret

๐Ÿ“š Documentation

Authentication Flow

  1. Email Verification - Users receive verification emails
  2. Secure Login - JWT tokens with refresh mechanism
  3. Protected Routes - Frontend and backend route protection
  4. Password Reset - Secure password reset flow

API Endpoints

  • POST /api/auth/register - User registration
  • POST /api/auth/login - User login
  • GET /api/auth/verify/:token - Email verification
  • POST /api/auth/forgot-password - Password reset
  • GET /api/auth/google - Google OAuth

๐Ÿค Contributing

We welcome contributions! Here's how you can help:

  1. Add Templates - Create new authentication templates
  2. Report Bugs - Open issues for any problems
  3. Feature Requests - Suggest new features
  4. Documentation - Improve our docs

Adding New Templates

# Create a new template folder
templates/
โ”œโ”€โ”€ react_facebook_auth/
โ”‚   โ”œโ”€โ”€ frontend/
โ”‚   โ”œโ”€โ”€ backend/
โ”‚   โ””โ”€โ”€ README.md

๐Ÿ“Š Roadmap

  • [ ] TypeScript support
  • [ ] Next.js templates
  • [ ] Vue.js support
  • [ ] Database integrations
  • [ ] Docker support
  • [ ] Testing setup
  • [ ] CI/CD templates

๐Ÿ› Issues & Support

๐Ÿ“œ License

MIT ยฉ Nischay Bandodiya

๐Ÿ™ Acknowledgments

  • Thanks to all contributors
  • Inspired by create-react-app and similar tools
  • Built with โค๏ธ for the developer community

โญ Star this repo if it helped you!

Made with โค๏ธ by Nischay Bandodiya