Introducing Vuex Chapter 8Let's open the application and run the frontend and backend servers:
$ cd movie_rating_app
$ npm run build
$ nodemon server.jsAlso, run the mongo server with the following command:
$ mongodThe movie listing page should look like this:
Let's start by installing vuex:
$ npm install --save vuex