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

@kloak-it/tq-proxy

v0.0.58

Published

QT PROXY Server/Client

Downloads

69

Readme

TQ Proxy Server

Description 概要

multiple gateway

TQ Proxy is lightweight and fast Proxy server based on NodeJS. It provide HTTP, HTTPS, SOCKS v4 & v5 proxy. TQ Proxy splits a proxy to two parts, one is the gateway server and proxy server. Communication between the two parts is using HTTP protocol to make a virtual tunnel that disguise the traffic looks like normal HTTP protocol, to exchanges packets. Support multiple gateway servers at the same time, which can increase bandwidth and reduce the risk of traffic monitoring.

TQ Proxy是輕量高速代理服務器,它支持 HTTP/HTTPS Proxy, Socks v4和v5。

它把一個Proxy服務器拆分成網關服務器和代理服務器二個部分,代理服務器獲取客戶端的網絡請求後,提交給網關服務器去訪問目標主機,然後回傳給代理服務器並返回客戶端。

網關服務器和代理服務器通过明碼HTTP混淆协议,建立一个實質加密的虚拟专用通道來逃避網絡審查。

TQ Proxy類似於Shadowsocks代理服務器,但TQ Proxy可同時使用多個網關服務器,以達到網絡加速和減少網關服務器被流量監控發現的風險。

iOPN4

INSTALL 安裝

  1. Install NodeJS / 安裝NodeJS

https://nodejs.org/en/

  1. install TQ Proxy / 安裝TQ代理服務器
npm i @kloak-it/tq-proxy -g

SETUP 設置

Gateway Server 啟動網關服務器

Gateway1 server 網關服務器一 192.168.0.1

tq-proxy -g password1 80

Gateway2 server 網關服務器二 192.168.0.2

tq-proxy -g password2 80

Proxy Server 啟動代理服務器

Proxy server 192.168.0.3

tq-proxy -p gateway.json 3127

About gateway.json 關於gateway.json設定

Setup two gateway server for proxy server

[
    { 
        "gateWayPort": 80, 
        "gateWayIpAddress":"192.168.0.1",
        "randomPassword":"password1"
    },{
        "gateWayPort": 80,
        "gateWayIpAddress":"192.168.0.2",
        "randomPassword":"password2"
    }
]

Customized Dedicated Private Gateway Cluster service/訂製專屬VPN代理集群服務

https://www.tq-proxy.com

Notice 注意事項

This version do not support UDP proxy.

當前版本代理服務器不支持UDP代理

このパージョンはUDP対応しておりませんので、ご注意してください。

License 版權

Copyright (c) Kloak Information Technologies Inc. All rights reserved.

Licensed under the MIT License.

The MIT License (MIT) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.