rxjs-boost
v1.1.1
Published
Fire up your RxJS experience to a new level 🔥
Downloads
141
Maintainers
Readme
RxJs Boost
Fire up your RxJS experience to a new level 🔥
Visit the official documentation and have a look at the collection of operators and utils. Or get started with one of the few below:
Installation
npm i rxjs-boost
import { wrapIntoObservable } from 'rxjs-boost';
import { retryWithDelay, switchTap, throwIf } from 'rxjs-boost/operators';
FAQ
- Why are there
throwIf
,throwIfNull
andthrowIfUndefined
– isn't one of them enough?- When strict null checks are enabled, TypeScript doesn't include
null
andundefined
in all other types. Therefore you'll want to narrow down the type inside your observable pipe. The example ofthrowIfNull
inside the documentation also displays this.
- When strict null checks are enabled, TypeScript doesn't include
- I've got an idea of a super cool, not overloaded operator – where can I submit it?
- Just open an issue. There is no template yet :)