This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@corbado/nodejs

1.1.9 • Public • Published

Corbado Node.js library

The Corbado Node.js library provides convenient access to the Corbado API from applications running on Node.js.

Documentation

See the Corbado API Reference and Corbado API-only integration guide to understand the usage of Corbado API.

Requirements

Node 8 or higher.

Installation

npm install @corbado/nodejs --save

Usage

The package needs to be configured with your Corbado account's project ID and API secret. All the parameters can be obtained from Corbado developer panel.

project ID and API secret should be provided when initializing the Corbado module:

const Corbado = require('@corbado/nodejs');

const config = new Corbado.Configuration()
config.projectID = process.env.PROJECT_ID
config.apiSecret = process.env.API_SECRET

const corbado = new Corbado.SDK(config)

Services

Corbado provides several services, e.g. PasskeyService, SessionService, EmailLinkService or ShortSessionService. To access specific methods in, e.g. SessionService, you can call:

corbado.session.verify(sessionToken, clientInfo);

ShortSession

Short session service provides you an easy way of accessing our session v2 variant. It provides a validate method that returns a user object with all information about the current users state. This state contains the current authentication state as well as users id, name, email and phone number.

const Corbado = require('@corbado/nodejs');

const config = new Corbado.Configuration()
config.projectID = process.env.PROJECT_ID
config.apiSecret = process.env.API_SECRET
config.authenticationURL = "https://" + config.projectID + '.auth.corbado.com'

const corbado = new Corbado.SDK(config)

const user = await corbado.shortSession.validate(req)
if (user.authenticated === true) {
    // Do anything with authenticated user
} else {
    // Perform login ceremony
}

Utilities

Corbado package also provides several useful utility functions that can ease the development process, e.g.:

Corbado.getClientInfo(req);

helps to obtain relevant client information (UserAgent, RemoteAddress, etc.) object from an HttpRequest.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Published

Version History

  • Version
    Downloads (Last 7 Days)
    • Published

Package Sidebar

Install

npm i @corbado/nodejs

Weekly Downloads

1

Version

1.1.9

License

ISC

Unpacked Size

31.6 kB

Total Files

16

Last publish

Collaborators

  • abdullah_shahbaz
  • incorbador
  • naetraga
  • vdelitz