Skip to content

stevekinney/rxjs-fundamentals

Folders and files

NameName
Last commit message
Last commit date

Latest commit

bbb3b1a · Feb 28, 2023

History

51 Commits
Nov 16, 2021
Nov 16, 2021
Mar 15, 2022
Mar 15, 2022
Dec 2, 2022
Nov 16, 2021
Nov 14, 2021
Nov 14, 2021
Nov 14, 2021
Nov 14, 2021
Nov 14, 2021
Nov 14, 2021
Nov 14, 2021
Nov 14, 2021
Feb 27, 2023
Dec 2, 2022
Nov 14, 2021
Nov 16, 2021

Repository files navigation

This respository contains the exercises and sample applications used in Steve's RxJS Fundamentals course for Frontend Masters.

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