Do not forget to read the readme
- Launch the app
pnpm startornpm startand go to http://localhost:8000/ - Run the tests !
pnpm testornpm test - Alternatively, run the tests in watch mode
pnpm test --watchornpm test -- --watchthen pressato run all tests. - Once your work is done commit and push
git add src && git commit -m "What did you do?" && git push origin
Hint: Your application might not run. It probably contains some bugs. You are here to solve them. ;-)
In this challenge you will implement your own version of the famous RxJS:
At the end of this Jam, the following points should be met:
- All tests should be green
- The function
Observableshould be implemented - The function
fromEventshould be implemented - The function
intervalshould be implemented - The function
ofshould be implemented - The function
mapToshould be implemented - The function
mergeshould be implemented - The function
switchToshould be implemented