> For the complete documentation index, see [llms.txt](https://betwinsouls.gitbook.io/full-stack-javascript/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://betwinsouls.gitbook.io/full-stack-javascript/angular_project_set-up.md).

# Angular Project Set-up

Folder structure: app/server.js

Create a package.json file `npm init`

Install express as a dependency `npm install express --save`

Install nodemon as a dev dependency `npm install nodemon --save-dev`

Create server.js

At this point if you are only working on the html and css is best to use nodemon to reload your page automatically every time a change is made. Run with `$ nodemon` in a separate shell tab.
