@gluecharm/glue-charm-library
v3.50.0
Published
A library to allow using all the Gluecharm services in your project
Downloads
43
Readme
Glue Charm Library
A library to allow using all the Gluecharm services in your project
Install
npm install @gluecharm/glue-charm-library
or
yarn add @gluecharm/glue-charm-library
Usage
import { initLibrary } from '@gluecharm/glue-charm-library';
const {fetch, methodsInfo} = await initLibrary();
const loginResponse = await fetch('login', {
email: 'user@email',
password: 'user-password'
})
console.log('available methods: ', methodsInfo)