技能 编程开发 Vercel 敏感数据处理

Vercel 敏感数据处理

v20260307
vercel-data-handling
用于在 Vercel 集成中检测和处理敏感数据、配置保留策略并满足 GDPR/CCPA 等隐私合规要求的实践指南。
获取技能
98 次下载
概览

Vercel Data Handling

Overview

Handle sensitive data correctly when integrating with Vercel.

Prerequisites

  • Understanding of GDPR/CCPA requirements
  • Vercel SDK with data export capabilities
  • Database for audit logging
  • Scheduled job infrastructure for cleanup

Data Classification

Category Examples Handling
PII Email, name, phone Encrypt, minimize
Sensitive API keys, tokens Never log, rotate
Business Usage metrics Aggregate when possible
Public Product names Standard handling

PII Detection

const PII_PATTERNS = [
  { type: 'email', regex: /[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/g },
  { type: 'phone', regex: /\b\d{3}[-.]?\d{3}[-.]?\d{4}\b/g },
  { type: 'ssn', regex: /\b\d{3}-\d{2}-\d{4}\b/g },
  { type: 'credit_card', regex: /\b\d{4}[- ]?\d{4}[- ]?\d{4}[- ]?\d{4}\b/g },
];

function detectPII(text: string): { type: string; match: string }[] {
  const findings: { type: string; match: string }[] = [];

  for (const pattern of PII_PATTERNS) {
    const matches = text.matchAll(pattern.regex);
    for (const match of matches) {

## Detailed Reference

See `{baseDir}/references/implementation.md` for complete data handling guide.
信息
Category 编程开发
Name vercel-data-handling
版本 v20260307
大小 4.15KB
更新时间 2026-03-10
语言