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 🙏

© 2024 – Pkg Stats / Ryan Hefner

create-react-auth-nav

v1.0.7

Published

A CLI tool to scaffold a fullstack React application with secure user authentication, leveraging React for the frontend and Node.js/Express for the backend, styled with TailwindCSS.

Downloads

7

Readme

Create a Fullstack React Auth Navigation Project

This CLI tool, npx create-react-auth-nav, simplifies setting up a fullstack React application with secure user authentication. It scaffolds a project that uses Passport/Bcrypt for encryption and provides basic navigation between pages, leveraging TailwindCSS for modern and responsive design.

Register Page Login Page

Features

  • Scaffolds a Fullstack React Application: Automatically creates a project with a React frontend and a Node.js/Express backend.
  • Secure User Authentication: Integrates Passport.js for flexible and secure user authentication, along with bcrypt for password hashing and salting.
  • Pre-styled Components: Utilizes TailwindCSS for a sleek, responsive design right out of the box.
  • Easy Database Connection: While the template stores user credentials in local storage for demonstration, it's designed for easy connection to any database of your choice for production use.

Quick Start

To create a new project with create-react-auth-nav, run:

npx create-react-auth-nav

This command creates a new directory called "react-register-fullstack" with the fullstack setup. Navigate into your new project directory to get started:

cd react-auth

To run the project from root folder and start both fronend and server, this require "concurrently" packages:

  • npm install
  • npm start
  • open your default web browser to http://localhost:3000
  • register a user, credentials will be stored in local storage this should not be used in production, for production connect to any database of your choice
  • login with the user you just registered and modify the app as you desire

Alterantively, you can start both frontend and backend separately if you don't want to use "concurently" package:

Backend Setup

  • cd backend
  • npm install
  • node server.js # or nodemon server.js

Frontend Setup

  • cd frontend
  • npm install
  • npm start
  • open your default web browser to http://localhost:3000
  • register a user, credentials will be stored in local storage this should not be used in production, for production connect to any database of your choice
  • login with the user you just registered and modify the app as you desire

Project Structure

The CLI tool generates the following project structure:

react-auth/
├── backend/
│   ├── server.js
│   └── package.json
├── frontend/
│   ├── public/
│   │   ├── index.html
│   │   ├── manifest.json
│   │   └── robots.txt
│   └── src/
│       ├── components/
│       │   ├── About.jsx
│       │   ├── Contact.jsx
│       │   ├── Footer.jsx
│       │   ├── Header.jsx
│       │   ├── Home.jsx
│       │   ├── Login.jsx
│       │   ├── Navigation.jsx
│       │   ├── ProtectedRoute.jsx
│       │   └── Register.jsx
│       ├── app.js
│       ├── App.test.js
│       ├── authContext.js
│       ├── index.js
│       ├── reportWebVitals.js
│       └── setupTests.js
├── .gitignore
├── package.json
└── README.md

App

Register Page Login Page Home Page Home Page Home Page

Disclaimer: This project, create-react-auth-nav, is provided as-is without any warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. The use of create-react-auth-nav is entirely at your own risk. The author(s) or contributors shall not be liable for any damages, including but not limited to direct, indirect, incidental, special, consequential, or punitive damages arising out of or in connection with your access to, use of, or reliance on this project. By using create-react-auth-nav, you agree to this disclaimer and acknowledge that the project is offered freely for use, modification, and distribution under its specified license, without any obligation for support, maintenance, or updates.