Skip to main content

angular-rxjs-patterns

Master RxJS in Angular for handling async operations and reactive programming patterns effectively.

Install this skill

or
63/100

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

medium line 60

Template literal with variable interpolation in command context

SourceSKILL.md
60return this.http.get<Data>(`/api/data/${id}`);
medium line 68

Template literal with variable interpolation in command context

SourceSKILL.md
68return this.http.put<Data>(`/api/data/${id}`, data);
medium line 72

Template literal with variable interpolation in command context

SourceSKILL.md
72return this.http.delete<void>(`/api/data/${id}`);
medium line 184

Template literal with variable interpolation in command context

SourceSKILL.md
184map(([num, letter]) => `${num}${letter}`)
medium line 567

Template literal with variable interpolation in command context

SourceSKILL.md
567return this.http.get<User>(`/api/users/${id}`);
medium line 600

Template literal with variable interpolation in command context

SourceSKILL.md
600return this.http.get<SearchResult[]>(`/api/search?q=${term}`);
low line 26

Fetch to external URL

SourceSKILL.md
26const fromPromise$ = from(fetch('/api/data'));
low line 717

External URL reference

SourceSKILL.md
717- [RxJS Official Documentation](https://rxjs.dev/)
low line 718

External URL reference

SourceSKILL.md
718- [RxJS Operators](https://rxjs.dev/guide/operators)
low line 719

External URL reference

SourceSKILL.md
719- [Angular HttpClient](https://angular.io/guide/http)
low line 720

External URL reference

SourceSKILL.md
720- [Reactive Programming with RxJS](https://pragprog.com/titles/smreactjs5/reactive-programming-with-rxjs/)
low line 721

External URL reference

SourceSKILL.md
721- [RxMarbles - Visual Operator Reference](https://rxmarbles.com/)
low line 722

External URL reference

SourceSKILL.md
722- [Learn RxJS](https://www.learnrxjs.io/)
Scanned on Feb 9, 2026
View Security Dashboard
Installation guide →