« Prev | Home | Next » |
If I’m being honest, I’m not sure how to describe what comes next.
You see, I’ve read many books on programming, and I’ve read many API references. They both have their aims, they both have their limitations, and they both have a familiar structures based on that. Books tend to be well categorized by concept, but not exhaustive. API references are exhaustive, but rarely categorized by concepts.
Well, this is going to be both a book and a reference.
We’re going to go through every. Single. Component. In. The. Library. Every class, every function, every type. Every single Observable, Subject, Scheduler, and operator will have its name, an explanation, and code examples. Even the deprecated members, so that you know what they’re doing when you see them in the wild.
But be warned: this tour takes a different approach to organizing that information. Rather than just presenting an alphabetical list, I’ve gone over every single member and grouped them by the problem space (or spaces) that they address. In doing that, I recognized 6 different things that you might want to do, and the library components that address them.
So here’s how this is going to work: Each category is a chapter. I’m also adding a chapter for types and a chapter for deprecated members. We’re going to discuss the “sub-problems” within that, and then talk about all the components that address that.
“But isn’t that… you know… a lot?”
Yes. Yes it is.
So here’s the most important piece of advice I can give:
YOU DON’T HAVE TO READ IT THROUGH ALL AT ONCE!!!
This tour IS NOT meant to take you gently from beginner to expert!
If you try to read it all the way through, line by line, it can be really intimidating.
Sometimes, the most important thing you can take away is “X can be done”, and you can come back later to find out, “This is how to do X”
My intent with this tour is really threefold:
So, here’s what I recommend:
And, everything in every chapter will be cross-referenced in the index, so you’ll be able to use that to search for anything that’s in the library.
Well, with no further ado, and no more gilding of the lily, let’s start by looking at the basic building blocks of RxJS: Observers, Observables, and Subscriptions.
« Prev | Home | Next » |