Proxy.Net 1.0.23

dotnet add package Proxy.Net --version 1.0.23
                    
NuGet\Install-Package Proxy.Net -Version 1.0.23
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Proxy.Net" Version="1.0.23" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Proxy.Net" Version="1.0.23" />
                    
Directory.Packages.props
<PackageReference Include="Proxy.Net" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Proxy.Net --version 1.0.23
                    
#r "nuget: Proxy.Net, 1.0.23"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Proxy.Net@1.0.23
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Proxy.Net&version=1.0.23
                    
Install as a Cake Addin
#tool nuget:?package=Proxy.Net&version=1.0.23
                    
Install as a Cake Tool

Proxy.Net

Simple .NET 8 TCP reverse proxy library.

Features

  • Asynchronous, high-performance TCP proxying
  • Bidirectional communication
  • Easy to use API
  • Graceful shutdown and resource cleanup

Installation

Install via NuGet:

dotnet add package Proxy.Net

Usage Examples

Basic Example

using Proxy.Net; 
using System; 
using System.Threading.Tasks;

class Program 
{ 
    static async Task Main(string[] args) 
    { 
        int localPort = 8888; 
        string remoteHost = "example.com"; 
        int remotePort = 80;

        // Parse command-line arguments if provided
        if (args.Length >= 3)
        {
            localPort = int.Parse(args[0]);
            remoteHost = args[1];
            remotePort = int.Parse(args[2]);
        }
    
        Console.WriteLine($"Starting proxy: localhost:{localPort} → {remoteHost}:{remotePort}");
    
        var proxy = new TcpReverseProxy(localPort, remoteHost, remotePort);
    
        // Handle Ctrl+C to gracefully shut down
        Console.CancelKeyPress += async (s, e) => 
        {
            e.Cancel = true;
            Console.WriteLine("Shutting down proxy...");
            await proxy.StopAsync();
            Environment.Exit(0);
        };
    
        try
        {
            proxy.Start();
            Console.WriteLine("Proxy started successfully. Press Ctrl+C to exit.");
        
            // Keep the application running
            await Task.Delay(-1);
        }
        catch (Exception ex)
        {
            Console.WriteLine($"Error: {ex.Message}");
        }
    }
}

Common Use Cases

  • Forward local development traffic to production or staging environments
  • Create TCP tunnels through firewalls
  • Load balance TCP connections
  • Monitor network traffic between services
  • Testing network applications
  • Avoiding cross-origin resource sharing (CORS) issues in web development

License

MIT

Contributing

Contributions are welcome! Feel free to submit issues and pull requests.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.23 130 9/13/2025
1.0.22 125 9/12/2025
1.0.21 108 9/12/2025
1.0.20 110 9/12/2025
1.0.19 125 9/12/2025
1.0.18 150 9/11/2025
1.0.17 147 9/11/2025
1.0.16 151 9/11/2025
1.0.0 146 9/11/2025