const jwt = require('jsonwebtoken'); const token = jwt.sign({ sub: 'user_id_here' }, 'ContentGen_SuperSecretKey_2026', { expiresIn: '1h' }); console.log(token);