Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 351 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 351 Bytes

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.`)
})