I decided it was time to dabble in a new JavaScript framework and picked Vue.js! This blog post is a basic guide to set up a project and will be updated as I start learning more about the framework.
npm install vue
npm i -g @vue/cli @vue/cli-service-global
or
yarn global add @vue/cli @vue/cli-service-global
vue create <your-project>
cd <your-project>
yarn serve
or npm serve
http://localhost:8080/