angular-rxjs-patterns
Master RxJS in Angular for handling async operations and reactive programming patterns effectively.
Install this skill
Security score
The angular-rxjs-patterns skill was audited on Feb 9, 2026 and we found 13 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 60 | return this.http.get<Data>(`/api/data/${id}`); |
Template literal with variable interpolation in command context
| 68 | return this.http.put<Data>(`/api/data/${id}`, data); |
Template literal with variable interpolation in command context
| 72 | return this.http.delete<void>(`/api/data/${id}`); |
Template literal with variable interpolation in command context
| 184 | map(([num, letter]) => `${num}${letter}`) |
Template literal with variable interpolation in command context
| 567 | return this.http.get<User>(`/api/users/${id}`); |
Template literal with variable interpolation in command context
| 600 | return this.http.get<SearchResult[]>(`/api/search?q=${term}`); |
Fetch to external URL
| 26 | const fromPromise$ = from(fetch('/api/data')); |
External URL reference
| 717 | - [RxJS Official Documentation](https://rxjs.dev/) |
External URL reference
| 718 | - [RxJS Operators](https://rxjs.dev/guide/operators) |
External URL reference
| 719 | - [Angular HttpClient](https://angular.io/guide/http) |
External URL reference
| 720 | - [Reactive Programming with RxJS](https://pragprog.com/titles/smreactjs5/reactive-programming-with-rxjs/) |
External URL reference
| 721 | - [RxMarbles - Visual Operator Reference](https://rxmarbles.com/) |
External URL reference
| 722 | - [Learn RxJS](https://www.learnrxjs.io/) |