Check if you have a Git client already installed:
git --version
If your OS can not recognize this command, install Git. For details please refer to this page. When installing under Windows, please make sure you check the following option:
- Use git from Windows command prompt
It is highly recommended to install the Node Version Manager which manages multiple active Node.js versions on your machine. The windows version of nvm can be downloaded here.
Having the Node Version Manager installed, install Node.js 6.10.2
:
nvm install 6.10.2
and set it to be used:
nvm use 6.10.2
Having the Node.js installed you have also its package manager - npm installed which can be used to install Yarn:
npm install -g yarn
Please note that this is not the only possibility available. Please refer to the Yarn Installation Instructions for more details on other possibilities.
Having Yarn installed you can install Angular CLI like this:
yarn global add @angular/cli
Clone this repository:
git clone https://github.com/mmatczak/codeeurope-ng.git
Install dependencies using Yarn:
cd codeeurope-ng
yarn
This may take several minutes...
Start the application using Angular CLI:
ng serve -o
The application should open in your default browser displaying: Welcome to Angular workshop at Code Europe!
mkdir ce-book-app
ng new ce-book-app --style=scss --skip-install --directory ce-book-app
cd ce-book-app
yarn
yarn add bootstrap@next @ng-bootstrap/ng-bootstrap