JSPM

  • Created
  • Published
  • Downloads 25
  • Score
    100M100P100Q132756F
  • License MIT

▶◀ Apillon SDK for NodeJS ▶◀

Package Exports

  • @apillon/sdk
  • @apillon/sdk/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@apillon/sdk) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Apillon SDK for NodeJS

npm version Twitter Follow

Apillon SDK is a NodeJS library written in Typescript for using Apillon Web3 services.

Requirements

To be able to use Apillon CLI, you must register an account at Apillon.io, create a project and generate an API key with appropriate permissions.

Installation

To install the SDK, run the following command:

npm install @apillon/sdk

Usage

To use the SDK in your project, first import appropriate module:

import { Hosting } from '@apillon/sdk';

Then, create a new instance of the module class:

const hosting = new Hosting({
    key: 'yourApiKey',
    secret:'yourApiSecret'
  });

You can then use the methods on the module instance to interact with the Apillon APIs.

For more information on using the SDK, see the Apillon documentation.