Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/m7moudgadallah/networking-demos
- Owner: m7moudGadallah
- License: mit
- Created: 2024-01-20T17:43:26.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-11T22:53:01.000Z (7 months ago)
- Last Synced: 2024-04-11T23:59:48.440Z (7 months ago)
- Language: TypeScript
- Size: 118 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)**