Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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`.