You may find that req.connection.remoteAddress does not have the user's IP address, especially in a hosted environment. The solution is to use req.headers['x-forwarded-for'], if available. Otherwise use req.connection.remoteAddress. For example:
exports.getIPAddress = function(req) {
return req.headers['x-forwarded-for'] || req.connection.remoteAddress;
};

There's no place like 127.0.0.1!
| Title | Date |
| Vault 3: How to Include Outline Text in Exported Photos | October 26, 2025 |
| .NET Public-Key (Asymmetric) Cryptography Demo | July 20, 2025 |
| Raspberry Pi 3B+ Photo Frame | June 17, 2025 |
| EBTCalc (Android) Version 1.53 is now available | May 19, 2024 |
| Vault 3 Security Enhancements | October 24, 2023 |
| Vault 3 is now available for Apple OSX M2 Mac Computers! | September 18, 2023 |
| Vault (for Desktop) Version 0.77 Released | March 26, 2023 |