npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

proxysocket

v1.2.0

Published

SOCKS5 client for making socket connections

Downloads

16

Readme

proxysocket

Join the chat at https://gitter.im/krisives/proxysocket

proxysocket is a nodejs module for seamlessly making socket connections via a SOCKS5 proxy. Use it in place of a regular net.Socket to easily talk over Tor or an SSH tunnel.

Install

Available on npm for easy install:

npm install proxysocket

You can also download a release manually and extract it as proxysocket has no dependencies.

Usage

Because proxysocket provides the same API as a regular net.Socket object you can use it in many places where sockets and streams are used.

Making a Socket

Create a new socket that will use the proxy:

var proxysocket = require('proxysocket');
var socket = proxysocket.create('localhost', 9050);

The returned object behaves like an ordinary net.Socket object. For example, you can call connect() or listen for events:

socket.connect('website.com', 80, function () {
	// Connected
});

socket.on('data', function (data) {
	// Receive data
});

Also note if you're using Tor it's fine to pass .onion hosts:

socket.connect('p4fsi4ockecnea7l.onion', 6667);

Making HTTP Requests

You can use proxysocket.createAgent() to create an object like http.Agent which will make proxy sockets for you when using http.request(). Here is an example:

var proxysocket = require('proxysocket');
var http = require('http');
var agent = proxysocket.createAgent();

http.request({
	host: 'foo.com',
	agent: agent
});

API

proxysocket.create(socksHost, socksPort, socket)

Create a new socket object that uses a SOCKS5 proxy provided.

  • socksHost is the host of the proxy. Default is localhost
  • socksPort is the port of the proxy. Default is 9050
  • socket can be an existing net.Socket object. Default is a new Socket()

proxysocket.createAgent(socksHost, socksPort)

Returns an object like http.Agent which makes new sockets using proxysocket.create() as needed.

socket

The object returned from proxysocket.create() is just like a regular net.Socket. This documentation lists additions to the API.

Note This documentation doesn't list all of the methods, properties, or events of net.Socket, Readable or Writable. See the nodejs API reference for those modules.

socket.socksHost

Get the host address of the proxy. By default this will be localhost.

socket.socksPort

Get the port of the proxy. By default this will be 9050.

socket.realSocket

Get the underlying raw net.Socket connection to the proxy. You don't need to use this and instead should listen on this socket instead.

socket 'socksdata' event

socksdata is emitted whenever underlying data is received from the proxy before the socket is ready for use. This is mainly here for debugging and you should use the data event instead.

Contributing

Please fork and make a pull request if you have anything cool to add. You're also welcome to join the Gitter chat.