Relay Chat Widget
Add a real-time chat widget to any website in two lines of code.
<div id="chat"></div>
<script type="module">
import { mount } from 'https://relay.paramms.com/index.js'
mount({
el: document.getElementById('chat'),
url: 'wss://api.paramms.com/ws',
profileId: 'YOUR_PROFILE_ID',
})
</script>