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
- Host: GitHub
- URL: https://github.com/ultimatecourses/redux-store
- Owner: ultimatecourses
- Created: 2017-11-12T17:44:17.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-06-18T16:20:14.000Z (about 4 years ago)
- Last Synced: 2023-11-07T20:18:28.494Z (over 2 years ago)
- Topics: angular, redux-store, typescript
- Language: TypeScript
- Homepage: https://ultimateangular.com/ngrx-store-effects
- Size: 37.1 KB
- Stars: 169
- Watchers: 19
- Forks: 990
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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.