@koibanx/auth-dw-sdk
v0.0.1
Published
Auth DW SDK
Downloads
1,162
Readme
Koibanx Auth DW SDK
Auth DW SDK based in module Auth DW
Description
The Module Auth DW handles:
SDK Documentation
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',
})