When working with the frontend, sometimes you need to use some sort of backend api. There may be two api server – one for development and other for production. While developing frontend, I prefer to use development server for the api rather that production and it makes sense. But, after finishing the frontend, api endpoint …
Vue.js is a progressive javascript framework for building user interface. There are other frameworks out there but I like vue for several reasons. Firstly, it is super fast and perfect for building single page application. Secondly, it is reactive, DOM gets updated whenever data changes. Thirdly, it has cli named vue-cli, a npm package and easy …