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

authease

Package Overview
Dependencies
Maintainers
0
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

authease

AuthEase: Make Authentication with Ease.

latest
npmnpm
Version
0.1.4
Version published
Maintainers
0
Created
Source

Auth Ease

AuthEase: Make Authentication with Ease.

Usage

To start using the library, install it in your project

npm i authease

To use the library, follow the steps as below:


import {AuthEasyProvider,LoginPage,SignedIn,SignedOut} from 'authease';

import "authease/dist/styles/index.css"; // style sheet of login page and sign up page.

function App() {
  return (
  <AuthEasyProvider> 
      <SignedIn>
        <Welcome/> // custom component
      </SignedIn>
    <SignedOut>
      <LoginPage/> 
    </SignedOut>
  </AuthEasyProvider>
  );
}

export default App;

function Welcome(){
  return <h1 className='text-4xl text-red-700 text-center'>Welcome to home!</h1>
}

You are good to go to start your work now. Your Auth is ready to use.

Keywords

authenication

FAQs

Package last updated on 01 Jan 2025

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