DEV Community

Sadick
Sadick

Posted on • Originally published at Medium on

Lets make a chat app over telnet

Its completely okay to play with your terminal

The idea is very simple. Build a server and use telnet as a client to relay messages.I have been playing with Go a lot recently and am really enjoying the process.

Well there is only one thing to create, the server to enable telnet communication.

Usage

package main
import "server"

func main(){
    server.NewServer(":4000")
    server.Run()
}
Enter fullscreen mode Exit fullscreen mode

Suggestions are welcomed. Drop me a line on twitter @izohbiz or leave a comment.

Top comments (0)