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

@push.rocks/smartproxy

v3.1.0

Published

a proxy for handling high workloads of proxying

Downloads

156

Readme

@push.rocks/smartproxy

A proxy for handling high workloads of proxying.

Install

To install @push.rocks/smartproxy, run the following command in your project's root directory:

npm install @push.rocks/smartproxy --save

This will add @push.rocks/smartproxy to your project's dependencies.

Usage

@push.rocks/smartproxy is a versatile package for setting up and handling proxies with various capabilities such as SSL redirection, port proxying, and creating network proxies with complex routing rules. Below is a comprehensive guide on using its features.

Setting Up a Network Proxy

Create a network proxy to route incoming HTTPS requests to different local servers based on the hostname.

import { NetworkProxy } from '@push.rocks/smartproxy';

// Instantiate the NetworkProxy with desired options
const myNetworkProxy = new NetworkProxy({ port: 443 });

// Define your reverse proxy configurations
const proxyConfigs = [
  {
    destinationIp: '127.0.0.1',
    destinationPort: '3000',
    hostName: 'example.com',
    privateKey: `-----BEGIN PRIVATE KEY-----
PRIVATE_KEY_CONTENT
-----END PRIVATE KEY-----`,
    publicKey: `-----BEGIN CERTIFICATE-----
CERTIFICATE_CONTENT
-----END CERTIFICATE-----`,
  },
  // Add more reverse proxy configurations here
];

// Start the network proxy
await myNetworkProxy.start();

// Update proxy configurations dynamically
await myNetworkProxy.updateProxyConfigs(proxyConfigs);

// Optionally, add default headers to all responses
await myNetworkProxy.addDefaultHeaders({
  'X-Powered-By': 'smartproxy',
});

Port Proxying

You can also set up a port proxy to forward traffic from one port to another, which is useful for dynamic port forwarding scenarios.

import { PortProxy } from '@push.rocks/smartproxy';

// Create a PortProxy to forward traffic from port 5000 to port 3000
const myPortProxy = new PortProxy(5000, 3000);

// Start the port proxy
await myPortProxy.start();

// To stop the port proxy, simply call
await myPortProxy.stop();

Enabling SSL Redirection

Easily redirect HTTP traffic to HTTPS using the SslRedirect class. This is particularly useful when ensuring all traffic uses encryption.

import { SslRedirect } from '@push.rocks/smartproxy';

// Instantiate the SslRedirect on port 80 (HTTP)
const mySslRedirect = new SslRedirect(80);

// Start listening and redirecting to HTTPS
await mySslRedirect.start();

// To stop the redirection, use
await mySslRedirect.stop();

Advanced Usage

The package integrates seamlessly with TypeScript, allowing for advanced use cases, such as implementing custom routing logic, authentication mechanisms, and handling WebSocket connections through the network proxy.

For a more advanced setup involving WebSocket proxying and dynamic configuration reloading, refer to the network proxy example provided above. The WebSocket support demonstrates how seamless it is to work with real-time applications.

Remember, when dealing with certificates and private keys for HTTPS configurations, always secure your keys and store them appropriately.

@push.rocks/smartproxy provides a solid foundation for handling high workloads and complex proxying requirements with ease, whether you're implementing SSL redirections, port forwarding, or extensive routing and WebSocket support in your network.

For more information on how to use the features, refer to the in-depth documentation available in the package's repository or the npm package description.

License and Legal Information

This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the license file within this repository.

Please note: The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.

Trademarks

This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.

Company Information

Task Venture Capital GmbH
Registered at District court Bremen HRB 35230 HB, Germany

For any legal inquiries or if you require further information, please contact us via email at [email protected].

By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.