0.0.1 • Published 1 year ago

@koibanx/auth-dw-sdk v0.0.1

Weekly downloads
-
License
ISC
Repository
gitlab
Last release
1 year ago

Koibanx Auth DW SDK

Auth DW SDK based in module Auth DW

Description

The Module Auth DW handles:

SDK Documentation

Feast yourself

Installation

npm install @koibanx/auth-dw-sdk

NOTE: you must have the npm token in your .npmrc file

Initialization

Node

Using ES6 import

import AuthDwSdk from '@koibanx/auth-dw-sdk';

const authDw = AuthDwSdk({
  baseURL: 'http://your-url',
});

With require

exports.__esModule = true;
const AuthDwSdk = require('@koibanx/auth-dw-sdk')["default"];

const authDw = AuthDwSdk({
  baseURL: 'http://your-url',
});

Types

  • Typescript (@koibanx/auth-dw-sdk/dist/index.d.ts)

Examples

Using ES6 import

import AuthDwSdk from "@koibanx/auth-dw-sdk";

const authDw = AuthDwSdk({
    baseURL: 'http://your-url',
})
0.0.1

1 year ago