Let's call our new project npm-vue-babel-webpack. We'll open Git Bash, add the folder for this project, and cd into it:
mkdir npm-vue-babel-webpack && cd $_
We'll initialize NPM and accept all the defaults:
npm init -y
In Chapter 2, Webpack in Vue CLI 3, we installed NPM packages one by one, explained what each one does, and fixed any errors along the way. That gave us a thorough understanding of the building blocks of webpack and of how Vue and webpack fit together. To avoid unnecessary repetition, this time we'll just install everything at once.