I am trying to learn how vue works without any other libraries, unless those are a necessity. Is there a way to create a simple vue js app (the most barebones) without web pack or vue-cli? Since those packages are not yet clear to me.
So far though I can embed it in HTML; however, Node does not run HTML files only JavaScript files.
<html>
  <head>
  </head>
  <body>
    <div id="container">
      <input type="text" id="container" placeholder="enter text" v-model="value">
      <p>{{ value }}</p>
    </div>
    <script>
        var Vue = require('vue');
      new Vue({
        el: '#container',
        data: {
          value: '',
        },
      });
    </script>
  </body>
</html>