Skip to main content

coding-node

Provides expertise in Node.js 22+, covering async patterns, ESM, npm/pnpm, and frameworks like Express and Fastify for backend development.

Install this skill

or
84/100

Security score

The coding-node skill was audited on Mar 1, 2026 and we found 4 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 25

Fetch to external URL

SourceSKILL.md
25- **Async Patterns**: Use `async/await` for non-blocking code; e.g., `async function fetchData() { const data = await fetch('url'); return data; }`.
medium line 41

Access to .env file

SourceSKILL.md
41If API keys are needed (e.g., for external services), set them as environment variables: `process.env.API_KEY = 'your_key'`, and access via `$YOUR_API_KEY` in commands.
medium line 44

Access to .env file

SourceSKILL.md
44Integrate this skill with other tools by using Node.js as a runtime. For example, combine with databases via `mongoose` for MongoDB: install with `pnpm add mongoose`, then connect in code: `const mong
low line 50

External URL reference

SourceSKILL.md
501. **Set Up a Basic Express Server**: Create a file `server.js` with: `import express from 'express'; const app = express(); app.get('/', (req, res) => res.send('Hello World')); app.listen(3000, () =>
Scanned on Mar 1, 2026
View Security Dashboard
Installation guide →