SDK to connect your Javascript app to Giganter API.
Install the package from npm and import in your project.
npm install --save @gigantier/js-sdk
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.
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'
})
Thank you for considering contributing to Gigantier Javascript SDK.
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 start
In the case you want to build the dist file, execute:
npm run rollup
You can learn more about the Rollup API and configuration here.
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 publish
You need to run npm login
before npm publish
if you never did it before.