list-of-node-unblocker
About Gamma NDT Academy

Gamma NDT Academy is a training institution in oil and gas industry, providing NDT and QC courses in Kerala. Our training center is located in Thrissur, Kerala

Download our app to join free training

Download Gamma NDT Training App
Follow Us
Welding Inspector
CSWIP 3.1 : Welding Inspector Course Content
15 readings
Reading: Codes and Standards
Reading: Terminology
Reading: Welding processes
Reading: Consumables
Reading: Visual examination and dimensional checking before and after welding
Reading: Identification of pre-heat
Reading: Safety
Reading: Visual examination of repaired welds
Reading: Welding procedures and welder approvals and their control
Reading: Quality control of welding
Reading: Destructive tests
Reading: Non-destructive testing
Reading: Weld drawings
Reading: Distortion
Reading: Reporting
CSWIP 3.2 : Senior Welding Inspector Certification Course
5 readings
Reading: Supervision of welding inspectors and record keeping
Reading: Certification of compliance
Reading: NDT
Reading: Weld drawings
Reading: Quality assurance

To use the proxy from any network (e.g., to bypass a school or work firewall), you must host it on a cloud platform like Render , Heroku , or a VPS . Push your code to GitHub . Connect the repository to your chosen host.

: You need both express for server routing and unblocker for the proxy logic. npm install express unblocker Use code with caution. Copied to clipboard 2. Create the Proxy Script

const express = require('express'); const Unblocker = require('unblocker'); const app = express(); // Set a prefix (e.g., /proxy/) to identify proxy requests const unblocker = new Unblocker( prefix: '/proxy/' ); // Use the unblocker as middleware app.use(unblocker); // Simple root route to confirm it's running app.get('/', (req, res) => res.send('Node Unblocker Server is Active. Usage: /proxy/http://example.com'); ); const PORT = process.env.PORT || 8080; // Start server and handle WebSocket upgrades for dynamic sites app.listen(PORT, () => console.log(`Node Unblocker running on http://localhost:$PORT`); ).on('upgrade', unblocker.onUpgrade); Use code with caution. Copied to clipboard Launch the server : node index.js Use code with caution. Copied to clipboard

: It automatically adjusts relative paths and internal links within the proxied page so they continue to route through your proxy.

How Does A Node Unblocker Work? Benefits & Use Cases - NetNut

: Open your browser and navigate to a URL formatted as http://localhost:8080/proxy/[Target_URL] . Example: http://localhost:8080/proxy/https://google.com Key Technical Features

Once live, replace localhost:8080 with your deployed URL (e.g., https://render.com ).

: It streams data immediately without unnecessary buffering, ensuring low latency.