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.
📦 Get on the road by installing clifton:
npm install clifton
🚚 Create a Bus
on all your pages:
import { Bus } from 'clifton'
const bus = new Bus('letters')
📨 Then start delivering messages:
parent.html | iframe.html |
bus.deliver('letter', { to: 'Jess' })
bus.receive('reply', msg => {}) |
bus.receive('letter', msg => {
bus.deliver('reply', { text: 'Meow' })
}) |