Vue.js is a progressive JavaScript framework, which is used to build UIs (User Interfaces) and SPAs (Single-page Applications). This framework is famous for its fast-paced learning curve. It is such an easy to learn and approachable library that with the knowledge of HTML, CSS, and JavaScript, we can start building web applications in Vue.js. The fast learning curve is kind of a signature of this framework. It is a versatile framework for our need as a library or a full-fledged framework for building huge web apps.
Evan You have created this framework. The idea of Evan You behind this framework is to build the best framework by combining the best features from already existing Angular and react Frameworks. Before building Vue.js, Evan You was working at Google. Inc and worked on Angular based projects. So, he came up with the idea of building his own framework. He picked the best parts of Angular, like template syntax, easy to use, and picked the best parts of React as well, like two-way data binding, the concept of props, component-based approach, and combined them to make a new framework Vue.js better than both of them.
Vue CLI (vue-cli 3.x) requires Node.js version 8.9 or above (8.11.0+ recommended).
Install vue-cli 3.x
npm install -g @vue/cli
Check vue version
vue --version
Create new project.
vue create <PROJECT_NAME>
Start development server.
cd <PROJECT_NAME>
npm run serve
View/Edit/Update project configuraion.
vue ui