Popularity
1.0
Declining
Activity
0.0
Stable
11
1
0
Programming language: Go
License: Do What The F*ck You Want To Public License
Tags:
Networking
llb alternatives and similar packages
Based on the "Networking" category.
Alternatively, view llb alternatives based on common mentions on social networks and blogs.
-
gnet
⚡️A high-performance, lightweight, nonblocking, event-loop networking library written in pure Go.🔥 -
mqttPaho
The Paho Go Client provides an MQTT client library for connection to MQTT brokers via TCP, TLS or WebSockets. -
fortio
Load testing library and command line tool and web UI. Allows to specify a set query-per-second load and record latency histograms and other useful stats and graph them. -
sftp
Package sftp implements the SSH File Transfer Protocol as described in https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-02.txt. -
raw
Package raw enables reading and writing data at the device driver level for a network interface. -
gmqtt
Gmqtt is a flexible, high-performance MQTT broker library that fully implements the MQTT protocol V3.1.1. -
ethernet
Package ethernet implements marshaling and unmarshaling of IEEE 802.3 Ethernet II frames and IEEE 802.1Q VLAN tags. -
xtcp
A TCP Server Framework with simultaneous full duplex communication,graceful shutdown,custom protocol.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of llb or a related project?
Popular Comparisons
README
llb

What the f--k it is?
It's a very simple but quick backend for proxy servers. You can setup redirect to your main domain or just show HTTP/1.1 404 Not Found
with zero memory allocation and very fast response. Also useful when you need to serve many redirects or not found errors but don't want any overheads.
Quick start
git clone [email protected]:kirillDanshin/llb.git
cd llb
go build
# run in background with default ports
# but custom redirect destination
((./llb -redirDest="https://google.com/" &)&)&
Than setup your proxy to send any invalid requests like invalid host etc to this backend.