JSFiddle - React, Tailwind, and code Playground

by darthdeus

HTML

<script src="http://catsocket.com/catsocket.js"></script>

JavaScript

CS.subscribe("chat", function(message) {
   $(document.body).append(message); 
});

CS.publish("chat", "Hello, World!", true);