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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@xinosolutions/auth-sdk

v0.3.1

Published

Login with XS Auth — popup sign-in returning user profile and signed idToken.

Downloads

635

Readme

@xinosolutions/auth-sdk

Sign in with XS Auth — like Google or Microsoft, one button and you get the user back.


About XinoSolutions

XinoSolutions is a software development company dedicated to creating high-quality, developer-friendly solutions. We build modern tools and components that help teams ship secure, polished products faster.

@xinosolutions/auth-sdk is part of our open-source initiative to make XS Auth easy to integrate into any web application.


Add Login with XS next to Google and Microsoft. Call loginWithXS with your clientId and get the signed-in user back.

Browser-only. Requires window, sessionStorage, and crypto. Does not run in Node.js.

Why use this package

  • One line to sign inloginWithXS({ clientId: 'xs_your_app' })
  • User profile includedemail, firstName, lastName
  • Popup login — users stay on your page
  • Typed errors — popup blocked, cancelled, timeout, denied

Installation

npm install @xinosolutions/auth-sdk
yarn add @xinosolutions/auth-sdk
pnpm add @xinosolutions/auth-sdk

Before you start

Get your clientId from Xino Solutions (e.g. xs_your_app).

Register allowed domains for every URL where your app runs (http://localhost:3000, https://app.example.com, etc.).

Usage

import { loginWithXS, PopupBlockedError } from '@xinosolutions/auth-sdk';

async function signInWithXS() {
  try {
    const { user, idToken } = await loginWithXS({
      clientId: 'xs_your_app',
    });

    console.log(user.email, user.firstName, user.lastName);

    await fetch('/api/auth/session', {
      method: 'POST',
      headers: { 'Content-Type': 'application/json' },
      credentials: 'include',
      body: JSON.stringify({ idToken }),
    });
  } catch (e) {
    if (e instanceof PopupBlockedError) {
      alert('Please allow popups for this site.');
    }
  }
}

Result shape

{
  "user": {
    "email": "[email protected]",
    "firstName": "Jane",
    "lastName": "Doe"
  },
  "idToken": "eyJhbGciOiJSUzI1NiIs..."
}
  • user — display in your UI immediately
  • idToken — send to your backend to create a session

Handle errors

import {
  loginWithXS,
  PopupBlockedError,
  PopupClosedError,
  LoginTimeoutError,
  XSAuthDeniedError,
} from '@xinosolutions/auth-sdk';

try {
  const { user, idToken } = await loginWithXS({ clientId: 'xs_your_app' });
} catch (e) {
  if (e instanceof PopupBlockedError) { /* allow popups */ }
  else if (e instanceof PopupClosedError) { /* user cancelled */ }
  else if (e instanceof LoginTimeoutError) { /* retry */ }
  else if (e instanceof XSAuthDeniedError) { /* e.errorCode, e.description */ }
}

React example

import { useState } from 'react';
import { loginWithXS, PopupBlockedError } from '@xinosolutions/auth-sdk';

export function LoginWithXSButton() {
  const [user, setUser] = useState(null);

  async function handleSignIn() {
    try {
      const result = await loginWithXS({ clientId: 'xs_your_app' });
      setUser(result.user);
      await fetch('/api/auth/session', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        credentials: 'include',
        body: JSON.stringify({ idToken: result.idToken }),
      });
    } catch (e) {
      if (e instanceof PopupBlockedError) alert('Allow popups and try again.');
    }
  }

  return (
    <>
      <button type="button" onClick={handleSignIn}>
        Login with XS
      </button>
      {user ? <p>Signed in as {user.email}</p> : null}
    </>
  );
}

API reference

loginWithXS(options)

| Option | Type | Default | Description | |---|---|---|---| | clientId | string | — | Your public client id | | parentOrigin | string | window.location.origin | Must be on your allowed domains list | | timeoutMs | number | 120000 | Max wait for login (ms) | | scope | string | — | Optional scope | | useNonce | boolean | false | Optional nonce for backend session setup |

Returns: Promise<{ user: XSAuthUser; idToken: string }>

Error classes

| Error | When | |---|---| | PopupBlockedError | Popup blocked | | PopupClosedError | User closed popup | | LoginTimeoutError | Timed out | | XSAuthDeniedError | Sign-in denied |

Tips

  • Trigger login from a button click (popup blockers).
  • Register all domains (local + production) as allowed domains.

Troubleshooting

| Symptom | What to check | |---|---| | Popup blocked | User gesture + allow popups | | Domain / origin error | URL not on allowed domains list | | Times out | Increase timeoutMs or try again |

License

MIT

Support

For clientId, allowed domains, or integration help, contact Xino Solutions.