UNPKG

log-mate

Version:

log-mate makes logging effortless & powerful—log to console, files, databases, or cloud with structured logs, encryption, real-time streaming, and auto-rotation. It’s plug & play, supports multi-transport logging, and boosts performance with async, lazy l

11 lines (8 loc) 302 B
const crypto = require("crypto"); function encrypt(key, logData) { const cipher = crypto.createCipher("aes-256-cbc", key); let encrypted = cipher.update(JSON.stringify(logData), "utf8", "hex"); encrypted += cipher.final("hex"); return encrypted; } module.exports = encrypt;