-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pipe operator #192
Comments
Basically: The idea isn't to replace libraries like rx and xstream, the idea is for the native DOM and other platforms like Node to be able to expose observables which said libraries can consume. Even if the DOM did ship observables - I'm not sure why we'd want to add |
but what is the point of consuming Observable without operators ? 🤔 you need at least |
Piping is essential, but it can be done with a vast set of tools, starting from |
Currently this proposal only defines the basic observable, but as you all probably know - nobody uses RxJS/etc for observables alone. The whole point is operators.
Standardizing operators is as a cimmon wisdom probably too early, but there is one operator worth incuding in base spec. That is
pipe
- the composition operator and preferred way to use operators in RxJS 5.5+'pipe' allows to write operators as simple functions and thus extend the library.
This was already mentioned few times in other issues, so just wanted to highlight it separately.
The text was updated successfully, but these errors were encountered: