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

@ownid/react

v1.7.2

Published

A library for integrating OwnID into a React application. ## Table of Contents * [Installation](#installation) * [Getting Started](#getting-started) * [Alternative Integration Strategies](#alternative-integration-strategies) * [What is OwnID?](#what-is-ow

Downloads

951

Readme

OwnID-React SDK

A library for integrating OwnID into a React application.

Table of Contents

Installation

Use the npm CLI to run:

npm install @ownid/react

Getting Started

Initialize OwnID

Import OwnIDInit component to your App component and configure it with the appId of the website's OwnID application. To obtain the OwnID application's id, open the application in the OwnID Console.

...
import { OwnIDInit } from '@ownid/react';

...

  <OwnIDInit config={{ appId: '<your application id>' }}/>

Add Register with OwnID to Your Application

Add references to required elements

  const email = useRef<HTMLInputElement>(null);
  const password = useRef<HTMLInputElement>(null);
  const passwordConfirm = useRef<HTMLInputElement>(null);
<input ref={email} type="email" name="email"/>
<input ref={password} type="password" name="password"/>
<input ref={passwordConfirm} type="password" name="password"/>

Add the OwnID component to the registration page.

<OwnID type={WidgetType.Register}
  loginIdField={email}
  passwordField={password}
  confirmPasswordContainer={passwordConfirm}
  onError={setError}
  onRegister={onRegister}
/>

Then add onRegister callback. Store ownIdData in your app storage. (global variable at window object just an example. It's not recommended using it in that way)

onRegister(ownIdData) {
  window.ownIdData = ownIdData;
}

To add OwnID to your application using a service instead of the HTML template, see Inject Service into Registration Component.

Modify Existing Registration Method

Now, wrap your existing registration logic within the getOwnIDData function. This function adds the OwnID payload to the form data before calling your existing registraion method.

onSubmit(formData) {
  if (window.ownIdData) {
    formData.ownIdData = btoa(JSON.stringify([window.ownIdData]));
  }
  
  //Call your existing registration logic in the backend
  return register(formData);
}

Add OwnID Login to Your Application

Add references to elements

  const email = useRef<HTMLInputElement>(null);
  const password = useRef<HTMLInputElement>(null);
    <input ref={email} type="email" name="email"/>
    <input ref={password} type="password" name="password"/>

Add the OwnID component to the login page.

    <OwnID type={WidgetType.Login}
      passwordField={password}
      loginIdField={email}
      onError={setError}
      onLogin={onLogin}
    />

To add OwnID to your application using a service instead of the HTML template, see Inject Service into Login Component.

Define onLogin Function

Now, define the onLogin function that is executed when the user logs in with OwnID. This function must set the user session and execute post-login actions like triggering an event or navigating to an authorized page. For example, the onLogin method might look like:

function onLogin(data: any) {
    //setting user session
    authService.setAuth({ token: data.token });
    
    //redirecting user to the account page
    navigateTo('/account');
  }

Alternative Integration Strategies

Inject Service into Registration Component

As an alternative to incorporating the OwnID component into an HTML template, use the ownidReactService service at the registration page:

const email = useRef<HTMLInputElement>(null);
const password = useRef<HTMLInputElement>(null);
const passwordConfirm = useRef<HTMLInputElement>(null);

useEffect(() => ownidReactService.register({
  loginIdField: email.current,
  passwordField: password.current,
  confirmPasswordContainer: passwordConfirm.current,
  onRegister: (ownidData) => onRegister(ownidData),
  onError: (error: string) => setError(error),
}), []);

Now, you need to modify your existing registration method.

Inject Service into Login Component

As an alternative to incorporating the OwnID component into an HTML template, use the ownidReactService service at the login page:

  const email = useRef<HTMLInputElement>(null);
  const password = useRef<HTMLInputElement>(null);
  
  useEffect(() => ownidReactService.login({
    loginIdField: email.current,
    passwordField: password.current,
    onLogin: (ownidData) => onLogin(ownidData),
    onError: (error: string) => setError(error),
  }), []);

Now, you need to define the onLogin function.

What is OwnID?

OwnID offers a passwordless login alternative to a website by using cryptographic keys to replace the traditional password. The public part of a key is stored in the website's identity platform while the private part is stored on the mobile device. With OwnID, the user’s phone becomes their method of login. When a user registers for an account on their phone, selecting Skip Password is all that is needed to store the private key on the phone. As a result, as long as they are logging in on their phone, selecting Skip Password logs the user into the site automatically. If the user accesses the website on a desktop, they register and log in by using their mobile device to scan a QR code. Enhanced security is available by incorporating biometrics or other multi-factor authentication methods into the registration and login process.

License

This project is licensed under the Apache License 2.0. See the LICENSE file for more information.