Skip to main content

asynchronous

Teaches mastering asynchronous JavaScript patterns, including callbacks, promises, and async/await for efficient coding.

Install this skill

or
84/100

Security score

The asynchronous skill was audited on Feb 9, 2026 and we found 8 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 66

Template literal with variable interpolation in command context

SourceSKILL.md
66if (!response.ok) throw new Error(`HTTP ${response.status}`);
medium line 115

Template literal with variable interpolation in command context

SourceSKILL.md
115if (!res.ok) throw new Error(`HTTP ${res.status}`);
low line 54

Fetch to external URL

SourceSKILL.md
54fetch('/api/data')
low line 65

Fetch to external URL

SourceSKILL.md
65const response = await fetch('/api/data');
low line 97

Fetch to external URL

SourceSKILL.md
97const a = await fetch('/a');
low line 98

Fetch to external URL

SourceSKILL.md
98const b = await fetch('/b');
low line 102

Fetch to external URL

SourceSKILL.md
102fetch('/a'),
low line 103

Fetch to external URL

SourceSKILL.md
103fetch('/b')
Scanned on Feb 9, 2026
View Security Dashboard