A RESTful master-detail application built using Angular 2 and ngrx store.
- You must have
node v >= 4.0
andnpm
installed (viabrew install node
or NodeJS.org); npm i -g typings webpack-dev-server webpack rimraf json-server
- If you have already installed
typings
, make sure to update it to1.x
There are two main parts to this application. The first is the server which we are using json-server
to simulate a REST api. The second part is the Angular 2 application which we will use webpack-dev-server
to display.
To get started, run the commands below.
$ git clone https://github.com/onehungrymind/fem-ng2-ngrx-app.git
$ cd fem-ng2-ngrx-app
$ npm install
$ typings install
$ npm start
Then navigate to https://localhost:3001 in your browser.