This repository is made of several separate npm modules, that are installable separately. For example, to run the au-input module, we can do the following:
cd reactive-angular-application
npm install
Its also possible to install the modules as usual using npm:
npm install
In order to be able to provide realistic examples, we will need in our playground a small REST API backend server. We can start the sample application backend with the following command:
npm run server
This is a small Node REST API server.
To run the frontend part of our code, we will use the Angular CLI:
npm start
The application is visible at port 4200: http://localhost:4200