Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s-espinosa/rxjs-fundamentals
Steve's rxjs tutorial
https://github.com/s-espinosa/rxjs-fundamentals
Last synced: 25 days ago
JSON representation
Steve's rxjs tutorial
- Host: GitHub
- URL: https://github.com/s-espinosa/rxjs-fundamentals
- Owner: s-espinosa
- Created: 2023-12-08T22:07:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-11T19:17:49.000Z (about 1 year ago)
- Last Synced: 2024-11-28T08:12:44.193Z (3 months ago)
- Language: JavaScript
- Size: 1.06 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [RxJS Fundamentals](https://frontendmasters.com/courses/rx-js/)
This respository contains the exercises and sample applications used in [Steve's](https://twitter.com/stevekinney) RxJS Fundamentals course for [Frontend Masters](https://frontendmasters.com).
All of the lessons can be found at https://rxjs-fundamentals.netlify.app.
## Node Requirements
The recommended Node version for this course is `16.19.0`. You can use the [Node Version Manager or nvm](https://github.com/nvm-sh/nvm) to install the correct Node version.
## Getting Started
You can get _everything_ started by running `npm start` and heading over to `http://localhost:1234`. If for some reason the combined command is giving you trouble, then you can run each of the following separate terminal windows for the same effect.
There are four major components to this repository.
- Sample applications: `npm run ui`.
- API: `npm run api`.
- Lessons: `npm run lessons` (Although, you probably just want to visit [the website](https://rxjs-fundamentals.netlify.app) for that.)
- Tests: `npm test`.Alternatively, you can spin up both the sample applications and the server at the same time using `npm run both`.