Skip to content

scalekit-inc/scalekit-sdk-node

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Official Scalekit Node SDK

Scalekit helps you in shipping enterprise auth in days.

This Node SDK is a wrapper around Scalekit's REST API to help you integrate Scalekit with your Node.js applications.

Getting Started

  1. Sign up for a Scalekit account.
  2. Get your env_url, client_id and client_secret from the Scalekit dashboard.

Installation

npm install @scalekit-sdk/node
#or
yarn add @scalekit-sdk/node
#or
pnpm add @scalekit-sdk/node

Usage

import { Scalekit } from "@scalekit-sdk/node";

const scalekit = new Scalekit(
  process.env.SCALEKIT_ENV_URL!,
  process.env.SCALEKIT_CLIENT_ID!,
  process.env.SCALEKIT_CLIENT_SECRET!
);

API Reference

See the Scalekit API docs for more information about the API and authentication.

License

This project is licensed under the MIT license. See the LICENSE file for more information.