The one JavaScript framework I WOULD use
It’s this simple. Include it in your project like this: < script src=”https://unpkg.com/vue/dist/vue.js” > Then, write your HTML like this: < span class=”app” >{{ message }}< /span > And, your Javascript like so: var app = new Vue({ el: ‘#app’, data: { message: ‘Hello Vue!’ } }) That will output “Hello World” to your browser. Seems simple enough, but here’s where it gets fun. Now, open up your console and type: app.message=”What’s up?” And, hit enter. See, how your text now changes to “What’s Up?”. And, how easy it was to do? That’s what VueJS can help you do. And,