The Programming Giant Panda

Logo

A tutorial on how to design and code a board game

Who Done It?

by Andi McLean

Setting up.

We will be using a mixture of nodejs and Angular for our App. Firstly we’ll concentrate on using Angular, then we’ll split out the Backend at a later date.

Repository:

git clone https://github.com/TheProgrammingGiantPanda/WhoDidIt.git
git checkout lesson_1
npm install

Versions

At the time of writing. There are many tutorials about setting up nodejs/npm and Angular. Please do a internet search on how to do that.

Node:

>node --version
v20.7.0

Npm:

>npm --version
10.1.0

Angular:

>ng version
Package                      Version
------------------------------------------------------
@angular-devkit/architect    0.1602.3 (cli-only)
@angular-devkit/core         16.2.3 (cli-only)
@angular-devkit/schematics   16.2.3 (cli-only)
@schematics/angular          16.2.3 (cli-only)
Introduction Main page