Zero Server Architecture
RenameGo operates exclusively in your browser's memory (RAM). When you "upload" a file, it never leaves your computer. We do not have a backend server that receives, stores, or processes your files.
What we collect
- No Personal Names
- No Email Addresses
- No File Content
- Anonymous Analytics
Tracking
We use privacy-friendly analytics to count visitors. We do not use cookies that track you across the web.
Human-Driven Logic
RenameGo does not use Artificial Intelligence to analyze your files. All patterns are driven by your explicit input and our open-source JavaScript logic. Your data is never used to train any models.
const secureMode = true;
upload.on('file', (f) => {
processLocally(f);
noServerPush(f);
});