0.0.14 • Published 1 year ago

@vulpo-dev/auth-sdk v0.0.14

Weekly downloads
-
License
MPL-2.0
Repository
-
Last release
1 year ago

Links

About

The core TypeScript SDK is a framework agnostic library to interact with the vulpo authentication server.

Get Started

In order to initialize the SDK we require the project ID as well as the url of the server. You can find the project ID inside the admin dashboard under Settings -> Project -> Project ID.

import { Auth } from '@vulpo-dev/auth-sdk'

let auth = Auth.create({
	project: '<project-uuid>',
	baseURL: 'https://auth.your.app'
})

Auth.create returns an {@link AuthClient}