modern-javascript-patterns
Covers modern JavaScript (ES6+) features and patterns for writing clean, efficient code, ideal for refactoring and optimizing applications.
Install this skill
Security score
The modern-javascript-patterns skill was audited on May 12, 2026 and we found 10 security issues across 2 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 115 | console.log(`Hello ${name}, you are ${age}`); |
Template literal with variable interpolation in command context
| 188 | return `${greeting} ${names.join(", ")}`; |
Template literal with variable interpolation in command context
| 204 | const greeting = `Hello, ${name}!`; |
Template literal with variable interpolation in command context
| 207 | const html = ` |
Template literal with variable interpolation in command context
| 216 | const total = `Total: $${(price * 1.2).toFixed(2)}`; |
Template literal with variable interpolation in command context
| 222 | return result + str + `<mark>${value}</mark>`; |
Template literal with variable interpolation in command context
| 228 | const html = highlight`Name: ${name}, Age: ${age}`; |
Template literal with variable interpolation in command context
| 256 | [`get${field.charAt(0).toUpperCase()}${field.slice(1)}`]() { |
Template literal with variable interpolation in command context
| 348 | const response = await fetch(`/api/users/${id}`); |
Fetch to external URL
| 396 | const config = await fetch("/config.json").then((r) => r.json()); |