{"id":16509617,"url":"https://github.com/joonb14/libuvgameserver","last_synced_at":"2026-05-02T08:33:12.143Z","repository":{"id":111832731,"uuid":"473118516","full_name":"joonb14/LibuvGameServer","owner":"joonb14","description":"Simple C++ game server on linux using libuv for TCP connection.","archived":false,"fork":false,"pushed_at":"2022-10-16T04:31:49.000Z","size":32,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T06:14:43.444Z","etag":null,"topics":["c","cpp","game-server","gameserver","libuv","linux","ubuntu"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/joonb14.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-23T09:28:34.000Z","updated_at":"2024-11-17T02:40:14.000Z","dependencies_parsed_at":"2023-06-04T09:02:06.057Z","dependency_job_id":null,"html_url":"https://github.com/joonb14/LibuvGameServer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/joonb14/LibuvGameServer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joonb14%2FLibuvGameServer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joonb14%2FLibuvGameServer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joonb14%2FLibuvGameServer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joonb14%2FLibuvGameServer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joonb14","download_url":"https://codeload.github.com/joonb14/LibuvGameServer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joonb14%2FLibuvGameServer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32528223,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T01:12:54.858Z","status":"online","status_checked_at":"2026-05-02T02:00:05.923Z","response_time":132,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","cpp","game-server","gameserver","libuv","linux","ubuntu"],"created_at":"2024-10-11T15:51:24.802Z","updated_at":"2026-05-02T08:33:12.125Z","avatar_url":"https://github.com/joonb14.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Libuv 설치\n\n[https://github.com/libuv/libuv](https://github.com/libuv/libuv)\n\nWSL에서 설치했습니다 \u003cbr\u003e\nhttps://learn.microsoft.com/ko-kr/windows/wsl/install \u003cbr\u003e\n\u003cbr\u003e\nWSL에서 이 프로젝트를 실행하기위해선 아래 package들을 설치해야합니다\n```bash\n$ sudo apt-get update\n$ sudo apt-get install autotools-dev\n$ sudo apt-get install automake\n$ sudo apt-get install libtool\n$ sudo apt install make\n$ sudo apt-get install build-essential gdb\n```\nWSL package 설치가 끝나면 이제 libuv를 설치합니다\n```bash\ngit clone https://github.com/libuv/libuv.git\ncd libuv\nsh autogen.sh\n./configure --disable-dependency-tracking\nmake\nmake check\nsudo make install\n```\n- make check는 skip 하셔도됩니다.(해보실 분은 root 권한이면 fail하기 때문에 꼭 user 권한으로 실행하세요)\n- make install은 꼭 sudo로 root 권한으로 실행해야합니다.(/usr/local/lib과 /usr/local/include에 파일들을 추가해주기 때문에 root 권한 필요)\n    - 이렇게 해야 /usr/local/include에 uv.h가 추가되고 /usr/local/lib/libuv.a 가 생성됩니다!\n    - 이 두가지 파일이 없으면 저희 프로젝트를 make할 수 없습니다\n    - 여기까지가 설치 완료입니다\n\n# How To Test\n\nUbuntu의 하나의 터미널에서 Makefile을 이용하여 make한 다음 Server 실행합니다.\nmake시 obj 폴더가 없으면 error가 발생하기때문에 처음 한번은 obj directory 생성 필요합니다.\n\n```bash\n$ git clone https://github.com/joonb14/LibuvGameServer.git\n$ cd LibuvGameServer\n$ mkdir obj\n$ make\n$ ./MetaGameServer\n```\n![serverStart](https://user-images.githubusercontent.com/30307587/156481341-81e649a5-805f-4e9f-a229-56c62c0ef514.png)\n\nWindows에서 Unity Client를 실행해야합니다.\u003cbr\u003e\n아래 프로젝트에서 Client 폴더를 Unity에서 엽니다\u003cbr\u003e\nhttps://github.com/joonb14/LibuvGameServerClients\u003cbr\u003e\nScene에 SampleScene을 실행합니다\u003cbr\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoonb14%2Flibuvgameserver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoonb14%2Flibuvgameserver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoonb14%2Flibuvgameserver/lists"}