Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Geyser | 3,797 | 2 days ago | 345 | mit | Java | |||||
A bridge/proxy allowing you to connect to Minecraft: Java Edition servers with Minecraft: Bedrock Edition. | ||||||||||
Websockify | 3,369 | 298 | 6 | 24 days ago | 10 | July 22, 2021 | 24 | lgpl-3.0 | Python | |
Websockify is a WebSocket to TCP proxy/bridge. This allows a browser to connect to any application/server/service. | ||||||||||
Fuso | 1,316 | 2 months ago | 11 | gpl-3.0 | Rust | |||||
一款体积小, 快速, 稳定, 高效, 轻量的内网穿透, 端口转发工具 支持多连接,级联代理,传输加密 (A small volume, fast, stable, efficient, and lightweight intranet penetration, port forwarding tool supports multiple connections, cascading proxy, and transmission encryption) | ||||||||||
Ws Tcp Relay | 164 | 2 years ago | 4 | mit | Go | |||||
A simple relay between WebSocket clients and TCP servers | ||||||||||
Tor Ip Changer | 161 | a year ago | 1 | gpl-3.0 | Python | |||||
request new identity every X seconds interval using TOR client | ||||||||||
Ari | 145 | 4 | 21 days ago | 3 | August 27, 2021 | 29 | apache-2.0 | Go | ||
Golang Asterisk REST Interface (ARI) library | ||||||||||
Fraud Bridge | 139 | 2 months ago | other | C++ | ||||||
ICMP and DNS tunneling via IPv4 and IPv6 | ||||||||||
100 Words Design Patterns Java | 138 | a year ago | 16 | mit | Java | |||||
GoF Design Patterns, each pattern described with story from real life. | ||||||||||
Winssh Pageant | 133 | 3 months ago | bsd-3-clause | Go | ||||||
Bridge to Windows OpenSSH agent from Pageant. This means the openssh agent has the keys and this proxies pageant requests to it. | ||||||||||
Onionfruit | 122 | 6 months ago | 5 | other | ||||||
OnionFruit™ Connect - Tor access client with country selection, bridge configuration, pluggable transports and experimental DNS support |
AWS Lambda HTTP Proxy integration event bridge to Go net/http.
ridge is a bridge to convert API Gateway with Lambda Proxy Integration request/response and net/http.Request and net/http.ResponseWriter.
package main
import (
"fmt"
"net/http"
"github.com/fujiwara/ridge"
)
func main() {
var mux = http.NewServeMux()
mux.HandleFunc("/", handleRoot)
mux.HandleFunc("/hello", handleHello)
ridge.Run(":8080", "/", mux)
}
func handleHello(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/plain")
fmt.Fprintf(w, "Hello %s\n", r.FormValue("name"))
}
func handleRoot(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/plain")
fmt.Fprintln(w, "Hello World")
fmt.Fprintln(w, r.URL)
}
make deploy
to deploy a lambda function.ridge.Run(address, prefix, handler)
works as below.
AWS_EXECUTION_ENV
or AWS_LAMBDA_RUNTIME_API
environment variable defined),
The MIT License (MIT)
Copyright (c) 2016- FUJIWARA Shunichiro