npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ilp

v14.1.0

Published

ILP client library for sending and receiving payments

Downloads

121

Readme

npm standard circle codecov snyk

The ILP module includes:

  • Simple Payment Setup Protocol (SPSP), a higher level interface for sending ILP payments, which requires the receiver to have an SPSP server.
  • Interledger Dynamic Configuration Protocol (ILDCP), a protocol for exchanging configuration between nodes.
  • STREAM, the recommended Transport Protocol to use for most Interledger applications.
  • createLogger, a function to create a name spaced logger.
  • createMiddleware, a function to create server middleware for an SPSP receiver.
  • createPlugin, a function to get an ILP plugin from the environment or testnet.
  • receive, a function to create an invoice representing a handle to a STREAM server waiting to receive a specific amount.
  • pay, a function to make a STREAM payment to either a Payment Pointer or an ILP Address using appropriate shared secret.

Installation

npm install --save ilp

Note that ilp plugins must be installed alongside this module unless you simply use BTP

Create Plugin

Using ilp.createPlugin is an alias for the deprecated ilp-plugin module. It creates an instance of a BTP plugin that will attempt to connect to a local moneyd instance by default. This can be overridden using environment variables.

The module looks for ILP_PLUGIN_OPTIONS (or ILP_CREDENTIALS however this is deprecated) and ILP_PLUGIN. ILP_PLUGIN_OPTIONS must contain a JSON object and will be passed into the constructor of a new plugin instance. The name of the plugin type to instantiate must be stored as a string in the environment variable ILP_PLUGIN or it will default to ilp-plugin-btp.

By default (i.e. ILP_PLUGIN_OPTIONS and ILP_PLUGIN are not set), a random secret will be generated and a new instance of ilp-plugin-btp will be configured to connect to btp+ws://localhost:7768.

Simple Payment Setup Protocol (SPSP)

If you are sending to an SPSPv4 receiver using a Payment Pointer, the SPSP module provides a high-level interface to pay and query the server:

'use strict'

const ilp = require('ilp')

;(async function () {
  await ilp.SPSP.pay(ilp.createPlugin(), {
    receiver: '$bob.example.com',
    sourceAmount: '1000'
  })
})()

ilp.SPSP replaces the deprecated ilp-protocol-spsp module and no longer supports payments to servers using PSK2. Only responses from an SPSP server with the content-type of application/spsp4+json are accepted.

Create Middleware

The ilp module provides conveniences functions to create server middleware that can be used to host an SPSP endpoint for receiving payments.

Express example:

 const ilp = require('ilp')
 const app = require('express')()

 ;(async () => {
  const spsp = await ilp.express.createMiddleware({receiver_info:{name: 'Bob Smith'}})
  app.get('/.well-known/pay', spsp)
  app.listen(3000)
 })()

KOA and HAPI support to come...

Interledger Dynamic Configuration Protocol (ILDCP)

The ILDCP module allows clients to get their configured address, asset and scale from an upstream parent connector.

'use strict'

const ilp = require('ilp')

;(async function () {
  const plugin = ilp.createPlugin()
  await plugin.connect()
  const { clientAddress, assetScale, assetCode } = await ilp.ILDCP.fetch(plugin.sendData.bind(plugin))
  console.log(`Plugin connected and configured with address ${clientAddress} using asset ${assetCode} and scale ${assetScale}`)
})()

STREAM

The STREAM module provides an API to use the STREAM protocol to send and receive payments. STREAM is the recommended transport protocol for use with ILP.

The ilp module provides two abstractions over this module that make it simple to send and receive payments.

Receive

receive creates an instance of a STREAM server wrapped around a given plugin (or calls createPlugin if none is provided). It returns an Invoice object which has an address and secret that can be shared with a sender, and a receivePayment() method to wait for the incoming payment.

Pay

pay will either pay a valid SPSP receiver or an ILP address (assuming there is a STREAM server waiting for connections at that address).

To pay using an SPSP receiver, pass the payment pointer as the payee in the form of a string:

'use strict'

const ilp = require('ilp')

;(async function () {
  await ilp.pay(100, '$bob.example.com')
})()

To pay using a given ILP Address and shared secret pass these in as an object:

'use strict'

const ilp = require('ilp')

;(async function () {
  await ilp.pay(100, { destinationAccount: 'g.bob.1234', sharedSecret: Buffer.from('******', 'base64') })
})()

Examples are provided in example.js.