Category
Javascript Security

Javascript Security
Node.js Security: Runtime Protection Beyond npm audit
Node.js security has two layers, and most teams only build one of them. The first is pre-deployment hardening: input validation, dependency scanning, security headers, secrets management. The second is runtime defense: protecting the application while it runs in production, intercepting attacks as they happen inside the code. Most articles cover the first layer in depth. […]

Cybersecurity
GDPR-Compliant Logging: A JavaScript Developer’s Checklist
Why GDPR-Compliant Logging Matters The General Data Protection Regulation (GDPR) has changed the way companies handle and store user data. For JavaScript developers, this means that application logs must also comply with this regulation, as they may contain sensitive personal information. In this section, we will explore what GDPR-Compliant Logging is, why it is crucial, […]

Cybersecurity
GDPR Compliant Logging in NestJS: Masking User Data in Real Time
GDPR Compliant Logging in NestJS: If you’re working with NestJS and need to log events in your API, there’s one thing you can’t overlook. The General Data Protection Regulation (GDPR) requires that user data is protected at all times, including in logs. The problem is that, by default, many logging systems in Node.js store information […]