1. Folder structure #
Created Thursday 27 August 2020
Files/Folder in order of importance(descending):
node_modules
folder - node dependencies, ignored in.gitignore
.public
folder - Hasindex.html
(the app is rendered in a div here,id=root
).src
folder - all code should be added here.- Has
index.js
- The main/homepage injector toindex.html
.
- Has
package.json
- node dependency file.
How the files work together:
- We can make folders and place things in them, only except index.js.