Auth

An Appstitch library for passwordless authentication

Install

npm i @appstitch/auth

Install Peer Dependencies

npm install @appstitch/core

Remember to initialize Appstitch

Usage

Sign Up


auth.signUp({email : "[email protected]"})
    .then(result => {
        if(result.success)
        {
           // A code has been successfully sent to the email address
           // Ready to Confirm User (See below)
        }
    })
    

Sign In

Confirm User

Last updated

Was this helpful?