New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

http-tunneld

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

http-tunneld

nodejs global module to utilize http tunnel

latest
npmnpm
Version
0.0.2
Version published
Weekly downloads
2
-60%
Maintainers
1
Weekly downloads
 
Created
Source

http-tunneld

nodejs global module to utilize http tunnel

use as node_module

install

npm install http-tunneld --save

code below creates tcp server listening from 3128 which will pipe data through proxy to dest.

var tunnel = require('http-tunneld')({
  proxy: 'http://proxy.intranet:3218',
  dest: 'target.internet'
});
tunnel.listen(3128);

use as global

install

[sudo] npm install http-tunneld -g

run

tunneld --verbose --proxy http://proxy.intranet:3128 --port 3128 --dest target.internet

you might consider running http-tunneld using pm2 to daemonize.

note

this module is tested under squid.

FAQs

Package last updated on 21 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts