@ianwalter/line

1.0.1 • Public • Published

@ianwalter/line

Simple, safe parent-child communication with iframes using postMessage

Installation

npm install @ianwalter/line --save

Usage

Parent:

import Line from '@ianwalter/line'

// Create a line instance which establishes a communication line between the
// current window and an iframe within the current window, someIframe.
const line = new Line(someIframe)

// Subscribe to the alert topic and handle incoming messages with handleAlert.
line.sub('alert', handleAlert)

// Send a message to the action topic with some data.
line.msg('action', { date: new Date() })

Child:

import Line from '@ianwalter/line'

if (Line.hasParent()) {
  // Create a line instance which establishes a communication line between the
  // current window and, by default, window.parent.
  const line = new Line()

  // Subscribe to the action topic and handle income messages with
  // executeAction.
  line.sub('action', executeAction)

  // Send a message to the alert topic with some data.
  line.msg('alert', { date: new Date() })
}

 

ISC © Ian Walter

Readme

Keywords

Package Sidebar

Install

npm i @ianwalter/line

Weekly Downloads

4

Version

1.0.1

License

ISC

Unpacked Size

15.1 kB

Total Files

8

Last publish

Collaborators

  • ianwalter