I followed the instructions in the book:
git clone https://github.com/angular-in-action/invoice
cd invoice
git checkout start
npm install
However, I get a build error. Also, ng serve gives an error.
The problem seems to be that some of the packages do not work with my (current) version of node:
https://www.npmjs.com/package/node-sass
Fixing that seems to require:
npm install node-sass
npm install fsevents
Now, ng serve compiles successfully
But you still have to start the api server to get the application to run:
npm run api