clifton
v0.4.8
Published
Easy-to-use messaging between iframes and their parent
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 cliftonUsage
🚚 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' })
})