NOTE: will try Vue3
IDE to consider: https://code.visualstudio.com/
using notes from here: https://flaviocopes.com/vue-first-app/
npm install -g @vue/cli export PATH=~/.npm-global/bin:$PATH
vue create icecream
-> select Vue3
🎉 Successfully created project icecream.
👉 Get started with the following commands:
to look around:
$ cd icecream
$ npm run serve
cd icecream
> find . | grep -v node_modules | grep -v "\.git"
.
./package.json
./package-lock.json
./babel.config.js
./public
./public/favicon.ico
./public/index.html
./src
./src/App.vue
./src/main.js
./src/assets
./src/assets/logo.png
./src/components
./src/components/HelloWorld.vue
./README.md
remove/rename babel.config.js
copy/edit vue.config.js: publicPath outputdir
copy/edit package.json * "mydev": "vue-cli-service build --mode development",
> npm run-script build
seems fine
now have a dir which SEEMS LIKE an ok place to start