An open API service providing repository metadata for many open source software ecosystems.

GitHub topics: server-socket

reactphp/socket

Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP.

Language: PHP - Size: 1.03 MB - Last synced at: 4 days ago - Pushed at: about 1 month ago - Stars: 1,247 - Forks: 157

urish/firebase-server 📦

Firebase Realtime Database Server Implementation

Language: TypeScript - Size: 647 KB - Last synced at: about 21 hours ago - Pushed at: almost 4 years ago - Stars: 674 - Forks: 90

jenly1314/ASocket

:globe_with_meridians: ASocket 是一个TCP/UDP协议的封装库,方便快速实现TCP的长连接与UDP的单播、组播、广播等相关通信

Language: Java - Size: 3.77 MB - Last synced at: 16 days ago - Pushed at: 10 months ago - Stars: 58 - Forks: 14

Kilemonn/Cpp-SocketLibrary

C++ Network socket library for both Windows and Linux.

Language: C++ - Size: 1.36 MB - Last synced at: 3 days ago - Pushed at: 4 months ago - Stars: 7 - Forks: 4

k1729p/Miscellany

Language: Java - Size: 6.17 MB - Last synced at: 29 days ago - Pushed at: 29 days ago - Stars: 0 - Forks: 0

Elfline/BookStore-ClientServer-XML

A bookstore application, that provides a GUI for the client. the server handles all the computation and data processing from the clients' inputs. It has a separated GUI for the admin and the users. The exchanging of messages between client to server is through xml files

Language: Java - Size: 79.1 KB - Last synced at: about 2 months ago - Pushed at: about 2 months ago - Stars: 0 - Forks: 0

zhaxal/java-chess

Simple multiplayer chess game with chat, made in Java.

Language: Java - Size: 44.9 KB - Last synced at: about 1 month ago - Pushed at: over 1 year ago - Stars: 5 - Forks: 7

jdevfullstack/lightweight-web-server

a lightweight `GET` and `POST` web server written in Java

Language: Java - Size: 436 KB - Last synced at: 9 months ago - Pushed at: 9 months ago - Stars: 13 - Forks: 4

NetRay05/Socket-Channel

Encrypted Socket Channel Data Transmission for point-2-point state-full or state-less Communication over secure SSL(4096 pkbs) encrypted channels, Server & Client, Single-Unit header file, written in c++, Stealthy(hidden) or Concealed operations, persistent or ephemeral transitory connections.

Language: C++ - Size: 0 Bytes - Last synced at: 11 months ago - Pushed at: 11 months ago - Stars: 0 - Forks: 0

sergeyzhirkov/JavaFX_EchoChat_client-server

Language: Java - Size: 8.79 KB - Last synced at: about 1 year ago - Pushed at: about 4 years ago - Stars: 0 - Forks: 0

AnselmoGPP/Sockets

Compilation of TCP and UDP Boost sockets

Language: C++ - Size: 15.6 KB - Last synced at: about 1 year ago - Pushed at: almost 5 years ago - Stars: 0 - Forks: 1

AmauryOrtega/Sem-Update

Repositorio para la asignatura Seminario de Actualización.

Language: Java - Size: 74.4 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 2 - Forks: 2

siddhant-vij/Load-Testing-Tool

Word frequency analyzer with a custom load testing tool to compare server performance under varying loads.

Language: Java - Size: 1.88 MB - Last synced at: about 2 months ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

Nihuaway/Bazalt.server

Language: JavaScript - Size: 839 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 1 - Forks: 0

mfrashidi/beheshti-store-java

Back end server of the Beheshti Store app

Language: Java - Size: 1.72 MB - Last synced at: over 1 year ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

Prateek-Gupta1/Pong2d

A classical bluetooth based multi-player 2d Ping pong game for Android devices

Language: Java - Size: 481 KB - Last synced at: over 1 year ago - Pushed at: almost 8 years ago - Stars: 0 - Forks: 0

HosnawHb/Counter-Strike-With-Java

In this game, the objective for each player is to eliminate other players in a rectangular playground of adjustable size (n*m). The playground contains randomly placed obstacles that change with each round of the game. In the offline mode, three computer-controlled players act as enemies, spawning in random locations on the ground.

Language: Java - Size: 2.81 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

HarshAgarwal1102/MultiUser_Chat_App

Creating a multiuser chat app in Java, providing real-time communication and collaboration among multiple users.

Language: Java - Size: 2.62 MB - Last synced at: over 1 year ago - Pushed at: almost 2 years ago - Stars: 4 - Forks: 1

hu-xk/Socket-Server-and-file-tranformation

Size: 0 Bytes - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 0 - Forks: 0

amirezzati/Email-App-using-JAVA

Email App using Swing library and Socket Programming in JAVA

Language: Java - Size: 136 KB - Last synced at: almost 2 years ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

NikolayShvedov/Chat

Simple chat implemented with Java

Language: Java - Size: 30.3 KB - Last synced at: about 1 year ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 0

UMM-CSci-Systems/Threaded-echo-client-server

Threaded echo client-server lab using sockets in Java

Language: Shell - Size: 237 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 2

sheshan23/Multi-Client-Server-File-Transfer

It is a java application in which multiple clients can access the server concurrently and can upload or download files from the server

Language: Java - Size: 25.4 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 1

yashpatel2911/File-Transfer-Application

File Transfer Application is an application that can transfer any kind of file from server to client and client to server using Java Socket. First of all, I built a server that identifies the client's commands and processes it according to the client's request. For example, If a client wants a file from the server, then the client simply sends a request of GET <filename> and the server sends that file if the server finds that requested file. Secondly, the server architecture was built to handle multiple clients simultaneously. Multiple clients can connect to the server. For that, I implemented multithreading from Java. Lastly, for the client input I used a simple buffer-reader and to handle file-related operations, I used file operations library from Java.

Language: Java - Size: 6.84 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

BulHub/DesktopChat

Desktop chat with the ability to listen to music and watch videos

Language: Java - Size: 180 MB - Last synced at: about 2 years ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

joeaoregan/LIT-Yr4-NetworkGames

Group assignment networked hangman game

Language: C - Size: 2.95 MB - Last synced at: about 2 years ago - Pushed at: about 6 years ago - Stars: 2 - Forks: 1

mmushfiq/ServerSocket

Language: Java - Size: 250 KB - Last synced at: about 1 month ago - Pushed at: over 10 years ago - Stars: 0 - Forks: 0

prayagupa/talk2me.clj

talk 2 me - clj server

Language: Clojure - Size: 1.95 KB - Last synced at: about 1 year ago - Pushed at: over 7 years ago - Stars: 0 - Forks: 0

sumeetgajjar/TicTacToe

Console/Command line version of TicTacToe playable on SIngle machine and On Multiple machines

Language: Java - Size: 46.9 KB - Last synced at: about 1 month ago - Pushed at: almost 8 years ago - Stars: 1 - Forks: 0