https://github.com/thisdot/ngrx-training
https://github.com/thisdot/ngrx-training
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thisdot/ngrx-training
- Owner: thisdot
- Created: 2021-07-26T14:33:28.000Z (almost 5 years ago)
- Default Branch: challenge
- Last Pushed: 2022-04-03T21:14:08.000Z (about 4 years ago)
- Last Synced: 2025-04-06T06:42:51.258Z (about 1 year ago)
- Language: TypeScript
- Size: 4.17 MB
- Stars: 81
- Watchers: 4
- Forks: 85
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NgRx Workshop
## Setup
To get started, ensure that you have _at least_ Node v12 installed. You can verify what version you have installed by running
```sh
node --version
```
from your terminal. Then, fork this repository to your personal Github account. As you make changes to the codebase during this workshop you will be pushing your changes to your personal fork. You can [learn more about forks here](https://help.github.com/en/github/getting-started-with-github/fork-a-repo).
Once you have forked this repository, clone your fork to your development machine. Then run the following command using your terminal from the root of the repository to install dependencies.
```sh
npm install
```
With the dependencies installed run the app to verify everything is working correctly.
## Running the app
To run the app execute the following command from your terminal:
```sh
npm start
```
Then in another terminal run:
```sh
npm run backend
```
The app should now be running at [http://localhost:4200](http://localhost:4200)