/client/debug.html
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <title>Chat</title>
    <link rel="shortcut icon" href="assets/favicon.ico"/>
    <!-- -->
    <meta http-equiv="Content-Type" content="text/html; charset=utf8"/>
    <meta name="apple-mobile-web-app-capable" content="yes"/>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
    <!-- enyo (debug) -->
    <script src="enyo/enyo.js" charset="utf-8"></script>
    <!-- application (debug) -->
    <script src="package.js" charset="utf-8"></script>
    <link rel="stylesheet" href="style.css">
  </head>
  <body class="enyo-unselectable">
    <script>
      var conversationStore = new ConversationStore();
      new ChatClient().renderInto(document.body);
    </script>
  </body>
</html>