# Palladium-proxy **Repository Path**: dacnod/Palladium-proxy ## Basic Information - **Project Name**: Palladium-proxy - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-29 - **Last Updated**: 2025-08-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # This Proxy has been Archived. Please visit the new and better proxy, [Rhodium](https://github.com/LudicrousDevelopment/Rhodium) # Palladium Secondary Web Proxy to the Likes of Womginx and Corrosion. Made by EnderKingJ ## Hosting Services ## Speed (Discord) ### Palladium is the fastest proxy, severely beating Corrosion by 3x, Alloy - No Discord Support, Womginx - 1.3x ## Done - hCaptcha Support - Discord Support - Reddit Support - Websocket Support - Cookie Rewrites ## To-Do - Better HTML Rewriter - Better JS Rewriter - Better Cookie Support - LocalStorage Proxying - More Native Browser Functions - Better Headers Code - Single File Version - Youtube UI Fix ## Supported Sites ### Github Supported + Login (Some Parts of Dashboard Unsupported ### Discord Supported ### Reddit Mostly Supported ### Youtube Somewhat Supported, Errors: Reddit bug, can play video but navigating to other pages requires opening in new tab ## Setup ### Importing and Initiating ```js const Palladium = require("palladiumub"); //Outdated package, change to lib/server folder path const proxy = new Palladium(); //default config const http = require("http"); ``` ### Config ```js { "prefix": "/service/", "ssl": true, "encode": "xor", "title": "Service", "requestMiddleware": [ Palladium.blackList(["discord.com", "accounts.google.com"], "Page is Blocked by Host") ], Corrosion: [false, {}] server: your-http-server } ``` ### Server ```js var server = http.createServer(); proxy.init(); server.on("request", (req, res) => { if (req.url.startsWith(proxy.prefix)) return proxy.request(req, res) res.end("
") }) ``` ### End Result `index.js` ```js const Palladium = require("palladiumub"); const http = require("http"); var server = http.createServer(); const proxy = new Palladium({ "prefix": "/service/", "encode": "xor", "title": "Service", "requestMiddleware": [ Palladium.blackList(["any-link.com", "accounts.google.com"], "Page is Blocked by Host") ], server: server, }); proxy.init(); server.on("request", (req, res) => { if (req.url.startsWith(proxy.prefix)) return proxy.request(req, res) res.writeHead(200, {'content-type': 'text/html'}).end("
") }) server.listen(8080) ```