Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.53 KB

readme.md

File metadata and controls

43 lines (29 loc) · 1.53 KB

Advanced Recipes using @ngrx

This project illustrates how to leverage @ngrx add-ons:

Presentation

App Overview

The goal of the app is to demonstrate the different steps sorting algorithms go through to complete.

You first enter the number you would like to sort, then you select the sorting algorithm and hit 'Sort!' 🎉.

Bubble Sort Example

To go further into the @ngrx add ons usage, please refer to the presentation section.

Install

    $ git clone [email protected]:xlozinguez/angular-nyc-advanced-ngrx.git
    $ cd angular-nyc-advanced-ngrx.git
    $ npm install

Run

    $ npm start

Then go to localhost:3000

Concept

This app is split between two different store:

  • item-list: list of items to be sorted
  • step-list: the list of steps taken during the sort