An ILP plugin loader
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.
- The parameter
options.name
has been deprecated. - The env parameter
ILP_CREDENTIALS
has been deprecated in favour ofILP_OPTIONS
. - The module now includes type definitions for
Plugin
and related types and therefore exports both the type definitions and thecreatePlugin
andisPlugin
functions.
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
.