Giter VIP home page Giter VIP logo

udp_echo_server's Introduction

UDP Echo Go server

Needed a online UDP echo server for some experimentation with Nordic nRF9160 and LTE-m and NB-IoT. The echo server is of course generic. This repo also contain a test client, deployment instructions and some experimentation with Distroless.

Docker Distroless

I am a strong believe in keeping complexity down. I believe that Distroless and Multistage build succeed in that.

  • Platform independent build and run environment (Linux, Windows, Mac & cloud)
  • Immutable environment
  • No unnecessary "stuff" in run environment
  • Relative uncomplicated configuretion (8 line Dockerfile for both build & run)
  • Only Docker as dependency

One valid critic is that perhaps one type of complexity is just changed for another. Some times that is the case. E.g. How to debug? Mostly solvable but with added complexity. There are no silver bullets but for my case I would argue that it is a perfect match.

See distroless-go-hello for an minimal example.

Dependencies for examples below

Local echo server without Docker

Terminal 1:

cd echo_server
go run main.go

Terminal 2:

cd test_client
go run main.go 0.0.0.0

Local echo server with Docker

Terminal 1:

cd echo_server
docker build --rm -t echo .
docker run --rm -p 1234:1234/udp -t echo

Terminal 2:

cd test_client
go run main.go

Echo server on Google Could

Start server on Google cloud

Terminal:

cd test_client
go run main.go [SERVER_IP]

udp_echo_server's People

Contributors

hakanols avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.