{"id":27330256,"url":"https://github.com/oof2win2/rcon-server","last_synced_at":"2025-06-30T23:35:24.198Z","repository":{"id":57954713,"uuid":"528004224","full_name":"oof2win2/rcon-server","owner":"oof2win2","description":"A Deno implementation for a lightweight RCON server","archived":false,"fork":false,"pushed_at":"2022-08-27T13:44:39.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-12T00:23:12.254Z","etag":null,"topics":["rcon","server"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oof2win2.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}},"created_at":"2022-08-23T13:30:13.000Z","updated_at":"2023-03-17T13:11:59.000Z","dependencies_parsed_at":"2022-09-01T09:00:44.763Z","dependency_job_id":null,"html_url":"https://github.com/oof2win2/rcon-server","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/oof2win2/rcon-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oof2win2%2Frcon-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oof2win2%2Frcon-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oof2win2%2Frcon-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oof2win2%2Frcon-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oof2win2","download_url":"https://codeload.github.com/oof2win2/rcon-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oof2win2%2Frcon-server/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262868879,"owners_count":23377272,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["rcon","server"],"created_at":"2025-04-12T13:00:10.331Z","updated_at":"2025-06-30T23:35:24.144Z","avatar_url":"https://github.com/oof2win2.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rcon-server\n\nA Deno implementation for an RCON server.\n\n## Usage\n\nBelow is a simple example of how to use the RCON server to send an echo.\n\n```ts\nimport Server from \"https://deno.land/x/rcon_server@v1.0.1/mod.ts\";\n\nconst server = new Server(\"localhost\", 27015, \"password\");\n\nserver.on(\"request\", (client, message) =\u003e {\n  console.log(message.body);\n  if (message.body.startsWith(\"echo \")) {\n    server.reply(client, message.id, message.body.substring(5));\n  } else {\n    server.reply(client, message.id, \"This message is not supported yet\");\n  }\n});\n```\n\nThe server will emit `unreplied` events if a message has not been replied to. This is due to the fact that the RCON protocol\n*requires* messages to be replied to, even if it is with `''` (`0x00`).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foof2win2%2Frcon-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foof2win2%2Frcon-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foof2win2%2Frcon-server/lists"}