An open API service indexing awesome lists of open source software.

https://github.com/ultimatecourses/redux-store

Vanilla TypeScript example of a Redux Store
https://github.com/ultimatecourses/redux-store

angular redux-store typescript

Last synced: 8 days ago
JSON representation

Vanilla TypeScript example of a Redux Store

Awesome Lists containing this project

README

          

Simple Redux Store


Vanilla TypeScript example of a Redux Store

---

---

> This repo serves as the seed project for the Ultimate Angular NGRX Store + Effects course, as well as stepped solutions in separate branches, come and [learn NGRX](https://ultimateangular.com/ngrx-store-effects) with us!

## Prerequisites

* Install [Node.js](https://nodejs.org/en/download/)

* Install TypeScript

```bash
npm install -g typescript
```

* Install Yarn (optional)

If you want to roll with npm, feel free to do so. If you'd like to try Yarn, run the following or [another installation method](https://yarnpkg.com/lang/en/docs/install/):

```bash
npm install -g yarn
```

## Setup

#### Installing dependencies

```bash
cd

yarn install
# OR
npm install
```

#### Local server

```bash
yarn start
# OR
npm start
```

Visit [localhost:8000](localhost:8000) in your browser.