@shingo/auth-api-client
v1.0.0-alpha.8
Published
Client for Shingo auth api
Downloads
4
Readme
@shingo/auth-api-client
Client library for @shingo/auth-api-server
Usage
- Install the library as a dependency
npm i --save-dev @shingo/auth-api-client
- Import the
AuthClient
class from the index and instantiate with the server address:
import { AuthClient } from '@shingo/shingo-auth-api'
const client = new AuthClient('api.shingo.org:1337')
client
.login({ email: 'blah@blah', password: 'asdf', services: 'some-service' })
.then(res => {
// do something
})