A zero-fuss way for users of your website to chat with each other. See it in action here. Built with socket.io, node and express.
Insert the following script tag anywhere in your page:
<script>
document.body.insertAdjacentHTML('beforeend',
"<iframe style='position: fixed; bottom: 0; right: 0; height: 300; width: 300; border: 1px solid orange;' src='https://cordial-chat.herokuapp.com' name='" + document.location.origin + "' />"
)
</script>
If you're uncomfortable putting a script tag in, you can figure out your page's origin and just put the iframe in yourself.
