Simple shell scripting APIs for spawning a TCP server. This is basically a
high-level wrapper around socat.
Launch a "Hello World" TCP server:
And interact with it using netcat, or telnet:
$ netcat localhost 3000
hello world
tcp_server $commandport - Optional port number to bind to. Defaults to 3000.Spawns a TCP server that executes the given command upon every connection to
the server. The server binds to the port using the reuseaddr flag.
#!/usr/bin/env importimport tcp@0.0.2
tcp_server echo hello world#!/usr/bin/env importimport tcp@0.0.2
# Imagine that `redis-server.sh` implements the Redis RESP protocolport=6379 tcp_server ./redis-server.sh