brain 0.1.2

Compiler for the brain programming language. Compiles brain into optimized brainfuck code. Also includes a brainfuck interpreter.
Documentation
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>Brainfuck Visualizer</title>
  </head>
  <body>
    <div id="app-container">
      <style type='text/css'>
        /* These styles are inlined so we have something to show while the page loads the JavaScript */
        body {
          overflow: hidden;
        }
        #loading {
          width: 100vw;
          height: 100vh;
          line-height: 100vh;
          font-family: sans-serif;
          font-size: 40px;
          text-align: center;
        }
      </style>
      <div id="loading">Loading...</div>
    </div>

    <script src='http://localhost:8080/bundle.js'></script>
  </body>
</html>