clifton
v0.4.8
Published
Easy-to-use messaging between iframes and their parent
Downloads
358
Readme
📬 Clifton
Never miss a delivery between your iframes again! Clifton is your friendly neighborhood postman, ensuring your messages arrive safe and sound, no matter the weather.
Install
📦 Get on the road by installing clifton:
npm install clifton
Usage
🚚 Create a Bus
on all your pages:
import { Bus } from 'clifton'
const bus = new Bus('letters')
📨 Then start delivering messages:
bus.deliver('letter', { to: 'Jess' })
bus.receive('reply', msg => {})
bus.receive('letter', msg => {
bus.deliver('reply', { text: 'Meow' })
})