Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@integrationos/authkit

Package Overview
Dependencies
Maintainers
5
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@integrationos/authkit

Frontend bindings for IntegrationOS AuthKit

latest
Source
npmnpm
Version
1.1.0
Version published
Weekly downloads
1.4K
-73.99%
Maintainers
5
Weekly downloads
 
Created
Source

authkit

Hook and components for integrating with IntegrationOS AuthKit. Compatible with React, Next.js, Vue, Svelte and more.

Install

With npm:

npm i @integrationos/authkit

With yarn:

yarn add @integrationos/authkit

Using the AuthKit component

You'll want to replace the token URL with your token endpoint URL, which can be securely generated from your backend using IntegrationOS' AuthKit Node library.

import { useAuthKit } from "@integrationos/authkit";

const { open } = useAuthKit({
  token: {
    url: "https://api.your-company-name.com/authkit-token",
    headers: {},
  },
  onSuccess: (connection) => {},
  onError: (error) => {},
  onClose: () => {},
});

Full Documentation

Please refer to the official IntegrationOS AuthKit docs for a more holistic understanding of IntegrationOS AuthKit.

Keywords

integrationos

FAQs

Package last updated on 08 Oct 2024

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