security

v0.1.0curated

Security baseline — no secrets in code, no eval, dependency review.

concern:securitylanguage:typescriptlanguage:javascript
archgate adr import packs/security

Decisions (3)

No Secrets in Code

Hardcoded secrets, API keys, and tokens in source code are one of the most common security vulnerabilities.

1 rule
No eval() or new Function()

`eval()` and `new Function()` execute arbitrary strings as code at runtime.

1 rule
Dependency Review

Every dependency added to a project expands its attack surface.

1 rule