New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-with-sanctum

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-with-sanctum

React package for easy authenticate with Laravel Sanctum

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

React-with-sanctum - your React authentication for laravel-sanctum

npm version Language grade: JavaScript Total alerts

React-with-sanctum provides an Sanctum component and SanctumContext context for Laravel-sanctum. Making it easy to use Laravel-Sanctum authentication in your React application.

Installation

npm i react-with-sanctum

Usage

Configure sanctum and wrap your application with it in app.tsx

// app.tsx

// import Sanctum component
import {Sanctum} from "react-with-sanctum";

// config example
const sanctumConfig = {
    apiUrl: 'http://localhost:8888/',
    csrfCookieRoute: 'sanctum/csrf-cookie',
    signInRoute: 'login',
    signUpRoute: 'register',
    signOutRoute: 'logout',
    forgotPasswordRoute: 'forgot',
    resetPasswordRoute: 'reset',
    userObjectRoute: 'user'
}

// set config to Sanctum component
const application =
    <Sanctum config={sanctumConfig}>
        /* Your application */
    </Sanctum>

Next use context for get access to authentication data and methods

// Login.tsx

// Login example
import React, {useContext,useState} from 'react'
import {SanctumContext} from 'react-with-sanctum'

const Login: React.FC = (props) => {
    const {signIn} = useContext(SanctumContext)
    const [email, setEmail] = useState('')
    const [password, setPassword] = useState('')

    const signInHandler = () => {
        signIn({email, password})
            .then((data) => {
                if (data) {
                    console.log('sign in success')
                } else {
                    console.error('401 error')
                }   
            })
            .catch((error) => console.log('error', error))
    }

    return <div>
        <input 
            type="text"
            name="email"
            value={email} 
            onChange={(e) => setEmail(e.target.value)}
        />
        <input 
            type="text"
            name="password"
            value={password}
            onChange={(e) => setPassword(e.target.value)}
        />
        <button onClick={() => signInHandler()}>Sign in</button>
    </div>
}

export default Login

Examples

Full code of example you can see in examples directory

License

React-with-sanctum is open source software released under the MIT license. See LICENSE for more information.

Keywords

react

FAQs

Package last updated on 20 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts