Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/m7moudgadallah/networking-demos

The Networking Demos repository provides practical examples and demonstrations for various networking protocols.
https://github.com/m7moudgadallah/networking-demos

Last synced: about 5 hours ago
JSON representation

The Networking Demos repository provides practical examples and demonstrations for various networking protocols.

Awesome Lists containing this project

README

        

# Networking Demos

## Table Of Content

- [Networking Demos](#networking-demos)
- [Table Of Content](#table-of-content)
- [About](#about)
- [UDP](#udp)
- [TCP](#tcp)

## About

The Networking Demos repository provides practical examples and demonstrations for various networking protocols.

## UDP

> UDP is a connectionless protocol that is often used for real-time applications where low latency is crucial.

Here is some simple demo project to gain practical experience with UDP in Node.js:

- [UDP Server using nodejs](./udp-demos/simple-udp-server-using-nodejs/)
- [Sensor data streaming Demo](./udp-demos/sensor-data-streaming-demo/)

**[↑Top](#table-of-content)**

## TCP

> TCP is a connection-oriented protocol that provides reliable, ordered, and error-checked delivery of data between applications.

Here is some simple demo project to gain practical experience with TCP in Node.js:

- [Simple TCP Server using nodejs](./tcp-demos/simple-tcp-server-using-nodejs/)

**[↑Top](#table-of-content)**