@gigantier/js-sdk v1.0.15
Gigantier JavaScript
SDK to connect your Javascript app to Giganter API.
Installation
Install the package from npm and import in your project.
npm install --save @gigantier/js-sdkUsage
To get started, instantiate a new Gigantier client with your credentials.
Note: This requires a Gigantier account.
// ESM
import gigantier from '@gigantier/js-sdk';
const client = gigantier({
clientId: 'XXX',
clientSecret: 'XXX',
scope: 'XXX'
});
// CJS
const gigantier = require('@gigantier/js-sdk');
const apiClient = gigantier.client({
clientId: 'XXX',
clientSecret: 'XXX',
scope: 'XXX'
});Alternatively you can include the UMD bundle via UNPKG like so:
<script src="https://unpkg.com/@gigantier/js-sdk"></script>
<script>
const apiClient = gigantier.client({
clientId: 'XXX',
clientSecret: 'XXX',
scope: 'XXX'
});
</script>Check out the API reference to learn more about authenticating and the available endpoints.
Custom Host
If you have a different host than default, you'll need to specify your API URL when instantiating:
const apiClient = gigantier({
client_id: 'XXX',
clientSecret: 'XXX',
scope: 'XXX',
host: 'api.yourdomain.com'
})Contributing
Thank you for considering contributing to Gigantier Javascript SDK.
Development
The SDK is built with ES6 modules that are bundled using Rollup.
If you want to roll your own bundle, or make changes to any of the modules in src, then you'll need to install the package dependencies and run rollup while watching for changes.
npm install
npm startIn the case you want to build the dist file, execute:
npm run rollupYou can learn more about the Rollup API and configuration here.
Release
To release a new version, first update version number at package.json, then execute:
npm install
npm run lint
npm test
npm run rollup
npm publishYou need to run npm login before npm publish if you never did it before.