@gigantier/js-sdk

1.0.15 • Public • Published

Gigantier JavaScript

npm version

SDK to connect your Javascript app to Giganter API.

API reference

Installation

Install the package from npm and import in your project.

npm install --save @gigantier/js-sdk

Usage

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 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.

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 publish

You need to run npm login before npm publish if you never did it before.

Dependencies (4)

Dev Dependencies (20)

Package Sidebar

Install

npm i @gigantier/js-sdk

Weekly Downloads

1

Version

1.0.15

License

MIT

Unpacked Size

143 kB

Total Files

16

Last publish

Collaborators

  • federicog
  • mettini