Skip to content

Latest commit

 

History

History

node

Skypager Node Runtime

This provides a version of the skypager runtime specially tailored for use in a node.js server environment.

Installation and Usage

$ yarn add @skypager/node --save

Using in a script

const runtime = require('@skypager/node')

runtime.start().then(() => {
  runtime.log(`Oh! World.`)
})