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

@sswahn/login

v1.1.5

Published

A versatile authentication library designed to streamline the user authentication processes for React applications. This library provides components for user registration, login, password reset, and more.

Downloads

3

Readme

Login · License npm version

A versatile authentication library designed to streamline the user authentication processes for React applications. This library provides components for user registration, login, password reset, and more.

Features

  • Seamless user registration with robust validation.
  • User login with optional "Remember Me" functionality.
  • Forgot password functionality with email confirmation.
  • Password reset using confirmation code.
  • Error and Success message alerts

Installation

Using npm.

npm install @sswahn/login

Usage

Import the components.

import {
  Register,
  Login,
  ForgotPassword,
  ConfirmForgotPassword
} from '@sswahn/login'

Register

Creates a user registration form.

<Register
  className="custom-register"
  onSubmit={handleOnSubmit}
/>

Login

Creates a user login form, with links to registration, and forgot password forms.

<Login
  className="custom-login"
  onSubmit={handleOnSubmit}
  forgotPassword={handleOpenForgotPassword}
  registerUser={handleOpenRegistration}
/>

Forgot Password

Forgot password form, for requesting a password reset.

<ForgotPassword
  className="custom-forgot-password"
  onSubmit={handleOnSubmit}
/>

Confirm Forgot Password

Confirm forgot password form. Using a confirmation code users can reset their passwords.

<ConfirmForgotPassword
  className="custom-confirm-forgot-password"
  onSubmit={handleOnSubmit}
/>

Documentation

onSubmit Callback Hook

  • Each component (Register, Login, ForgotPassword, ConfirmForgotPassword) accepts an onSubmit prop, which should be a asynchronous callback function.
  • This function is triggered when the user submits the form, and it receives the form data as an argument.
  • You can customize this function to handle the form submission, such as making API calls, additional validation, redirects, etc.
  • onSubmit must be an async function and, when necessary, return one of the following objects:
{ message: 'Your success message.' }
// or
{ error: 'Your error message.' }

Styling Overrides with className

You can customize the appearance of each component by providing a className prop. This allows you to apply your own styles to the component. For example:

const CustomRegister = () => {
  return <Register className="custom-register" onSubmit={handleRegister} />
}

In the above example, the "custom-register" class will be applied to the Register component, allowing you to override default styles.

Additional Callbacks in Login

  • forgotPassword: Callback triggered when the user clicks the "Forgot password?" button. Use this to handle opening the forgot password form.

  • registerUser: Callback triggered when the user clicks the "Create an account" button. Use this to handle opening the registration form.

Peer Dependencies

Login requires React as a peer dependency. You should have React installed in your project with a version compatible with this library.

Credits

This library uses Font Awesome Icons.

Related

  • @sswahn/cognito: Cognito is a robust AWS Cognito login system for Node.js.
  • @sswahn/session: Session provides a simple and efficient way to manage user sessions using AWS Cognito for authentication.
  • @sswahn/authorizer: An AWS Cognito authorizer for APIGateway that uses HTTP Cookies.

License

Login is MIT Licensed