Communicate with the Experience
Sending parameters to the Experience initialisation
import {
embed,
getExperience,
} from '@monterosa/sdk-launcher-kit';
const exp = getExperience({
parameters: {
myCustomParameter: 'myCustomValue',
anotherParameter: 'true'
}
})
await embed(experience, 'container-id');import {
embed,
getExperience,
} from '@monterosa-sdk/launcher-kit';
const exp = getExperience({
parameters: {
myCustomParameter: 'myCustomValue',
anotherParameter: 'true'
}
})
await embed(experience, 'container-id');Sending and receiving messages
Awaiting for the Experience to be ready
Sending a message
Receiving messages from the Experience
Responding to a message
Awaiting a response
Enable Logging
Last updated

