a proxy for handling high workloads of proxying
Go to file
2024-05-29 14:15:35 +02:00
.gitea/workflows fix(core): update 2023-07-27 16:27:50 +02:00
.vscode fix(core): update 2022-07-29 01:52:34 +02:00
test fix(core): update 2023-07-27 16:27:50 +02:00
ts fix(core): update 2023-07-27 16:28:26 +02:00
.gitignore fix(core): update 2021-02-02 15:55:25 +00:00
license fix(core): update 2019-08-20 17:50:17 +02:00
npmextra.json update tsconfig 2024-04-14 18:10:41 +02:00
package.json update description 2024-05-29 14:15:35 +02:00
pnpm-lock.yaml fix(core): update 2023-07-27 16:27:50 +02:00
readme.hints.md update tsconfig 2024-04-14 18:10:41 +02:00
readme.md update tsconfig 2024-04-14 18:10:41 +02:00
tsconfig.json update tsconfig 2024-04-01 21:40:16 +02:00

@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.

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 hello@task.vc.

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.