Skip to content

pirate/Coupe

 
 

Repository files navigation

Coupe

Coupe is a tool for communicating between web pages which may be on different domains.

It works by opening an iframe on each communicating frame. The pages use postMessage to communicate with the iframe. The frames use localStorage to share values between them.

You can set and clear values, and bind to events which are triggered when these values are changed.

Usage

The build/index.html file and the accompanying build/iframe.js file, must be deployed somewhere. If you wish to support communication between HTTPS pages, this location must itself support HTTPS.

On any page you wish to communicate with include ./client.js, then:

var client = Coupe.createClient({
  host: "https://bus.eager.io/index.html" // The location of the deployed file
})

To set values:

client.set('name', 'bob')

To get notified:

client.on('set:name', function(opts){
  // opts.value will be 'bob'
})

When the iframe is initialized, events will be triggered for all existing properties.

If you wish to trigger events for a value, but not store it:

client.flash('clicked-save', true)

You can also clear values:

client.clear('name')

Security Note

This version does not attempt to verify the hostname of the page creating the frame.

This means that any site can open a frame and see your information. Privileged information should not be communicated with this tool.

About

A tool for communicating between web pages

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 86.5%
  • CoffeeScript 13.2%
  • HTML 0.3%