Skip to main content

cloudflare-workers-frameworks

Integrates modern frameworks with Cloudflare Workers for building full-stack applications, covering routing, SSR, and edge deployment.

Install this skill

or
87/100

Security score

The cloudflare-workers-frameworks skill was audited on May 12, 2026 and we found 9 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 180

Template literal with variable interpolation in command context

SourceSKILL.md
180console.error(`[${c.req.path}] ${err.message}`);
low line 76

Access to .env file

SourceSKILL.md
76const { results } = await c.env.DB.prepare('SELECT * FROM users').all();
low line 82

Access to .env file

SourceSKILL.md
82await c.env.DB.prepare('INSERT INTO users (name, email) VALUES (?, ?)')
low line 129

Access to .env file

SourceSKILL.md
129return c.env.ASSETS.fetch(c.req.raw);
low line 155

Access to .env file

SourceSKILL.md
155app.get('/', (c) => c.env.DB.prepare('...'));
low line 159

Access to .env file

SourceSKILL.md
159return context.cloudflare.env.DB.prepare('...');
low line 163

Access to .env file

SourceSKILL.md
163const db = Astro.locals.runtime.env.DB;
low line 167

Access to .env file

SourceSKILL.md
167return platform.env.DB.prepare('...');
low line 172

Access to .env file

SourceSKILL.md
172// Or via nitro: event.context.cloudflare.env.DB
Scanned on May 12, 2026
View Security Dashboard
Installation guide →