A chat server implementation in Go, featuring a server and client architecture.
server/: Contains the chat server implementation.client/: Contains the chat client implementation.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
You need to have Go installed on your machine.
- Go (version 1.16 or later recommended)
Navigate to the server directory and run the application:
cd server
go run .Alternatively, you can build it first:
go build -o chat-server
./chat-serverOpen a new terminal, navigate to the client directory and run the application:
cd client
go run .Alternatively, you can build it first:
go build -o chat-client
./chat-client