Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.

Latest commit

 

History

History
58 lines (44 loc) · 2.08 KB

README.md

File metadata and controls

58 lines (44 loc) · 2.08 KB

ILP Plugin

An ILP plugin loader

NPM Package CircleCI JavaScript Style Guide Known Vulnerabilities

The script below will create an instance of an ILP plugin with no setup whatsoever. You can use this anywhere that you need an ILP plugin created from details in the environment or by specifying the detauls in code.

Changes in v4

  • The parameter options.name has been deprecated.
  • The env parameter ILP_CREDENTIALS has been deprecated in favour of ILP_OPTIONS.
  • The module now includes type definitions for Plugin and related types and therefore exports both the type definitions and the createPlugin and isPlugin functions.

Examples

Javascript:

const plugin = require('ilp-plugin')()

async function run () {
  await plugin.connect()
  await plugin.sendData(/* ... */)
  process.exit(0)
}

run()

TypeScript:

import createPlugin, { DataHandler } from '..'
const plugin = createPlugin()
const echo: DataHandler = (data: Buffer) => {
  return Promise.resolve(data)
}

async function run () {
  plugin.registerDataHandler(echo)
  await plugin.connect()
  await plugin.sendData(/* ... */)
  process.exit(0)
}

run()

If no parameters are provided it will attempt to find the config in environment variables. If these are not found it will load a plugin that attempts to connect to a local moneyd instance on port 7768.

The Environment variables that can be set are:

  • ILP_PLUGIN : The name/path of the plugin module
  • ILP_PLUGIN_OPTIONS : The options passed to the constructor, serialized as a JSON object.

The options object passed is a subset of the account configuration object proveded to ilp-connector.