snakepipe 2.2.1

A snake game based on stdin/stdout following unix philosophy
Documentation
<!DOCTYPE html>
<html>
<head>
  <meta charset='utf-8'>
  <meta http-equiv='X-UA-Compatible' content='IE=edge'>
  <title>snakepipe render-browser</title>
  <meta name='viewport' content='width=device-width, initial-scale=1'>
  <link rel='stylesheet' type='text/css' media='screen' href='main.css'>
  <script src="libs/qrcode.min.js"></script>
  <script src="libs/qrcode-display.js"></script>
  <script src="main.js" type="module"></script>
</head>
<body>
  <div class="layout-top">
    <h1>render-browser</h1>
    <p>This mirrors your game in the terminal by launching a server, reading the state from stdin, streaming this state through server-sent events, then a JS renderer reads it in the browser and renders it.</p>
    <div class="renderer-switcher-wrapper">
      <p>Choose your renderer:</p>
      <form id="renderer-switcher">
        <ul>
          <li>
            <input type="radio" name="rendererName" value="basic" id="renderName-basic" checked/>
            <label for="renderName-basic">Basic</label>
          </li>
          <li>
            <input type="radio" name="rendererName" value="inspect" id="renderName-inspect"/>
            <label for="renderName-inspect">Inspect</label>
          </li>
        </ul>
      </form>
    </div>
  </div>
  <div id="root" class="layout-main"></div>
  <div class="layout-qrcode">
    <qrcode-display width="160" height="160"></qrcode-display>
    <p>Snap the qrcode to watch it on your mobile</p>
  </div>
</body>
</html>