{"id":18259972,"url":"https://github.com/theflyingcodr/sockets","last_synced_at":"2025-04-08T23:44:43.227Z","repository":{"id":38244344,"uuid":"417569448","full_name":"theflyingcodr/sockets","owner":"theflyingcodr","description":"[WIP] Go library for building a socket server and client, featuring middleware support, channels, handler funcs and re-connects.","archived":false,"fork":false,"pushed_at":"2024-02-26T10:42:02.000Z","size":12811,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-14T18:36:24.881Z","etag":null,"topics":["channels","client","go","golang","rooms","server","sockets","socketserver"],"latest_commit_sha":null,"homepage":"","language":"Go","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/theflyingcodr.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":"2021-10-15T16:38:48.000Z","updated_at":"2022-01-10T10:29:27.000Z","dependencies_parsed_at":"2024-11-05T11:03:06.997Z","dependency_job_id":"3df2ef46-1f72-4f05-993c-4ca0f99c4038","html_url":"https://github.com/theflyingcodr/sockets","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theflyingcodr%2Fsockets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theflyingcodr%2Fsockets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theflyingcodr%2Fsockets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theflyingcodr%2Fsockets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theflyingcodr","download_url":"https://codeload.github.com/theflyingcodr/sockets/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247947825,"owners_count":21023058,"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":["channels","client","go","golang","rooms","server","sockets","socketserver"],"created_at":"2024-11-05T10:41:17.456Z","updated_at":"2025-04-08T23:44:43.209Z","avatar_url":"https://github.com/theflyingcodr.png","language":"Go","funding_links":["https://github.com/sponsors/theflyingcodr"],"categories":[],"sub_categories":[],"readme":"# sockets\n\n\u003e Channel based socket library on top of gorilla/sockets giving listeners, middleware, server and clients.\n\n[![Release](https://img.shields.io/github/release-pre/theflyingcodr/sockets.svg?logo=github\u0026style=flat\u0026v=1)](https://github.com/theflyingcodr/sockets/releases)\n[![Build Status](https://github.com/theflyingcodr/sockets/actions/workflows/go.yml/badge.svg)](https://github.com/theflyingcodr/sockets/actions/workflows/go.yml)\n[![CodeQL Status](https://github.com/theflyingcodr/sockets/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/theflyingcodr/sockets/actions/workflows/codeql-analysis.yml)\n[![Report](https://goreportcard.com/badge/github.com/theflyingcodr/sockets?style=flat\u0026v=1)](https://goreportcard.com/report/github.com/theflyingcodr/sockets)\n[![codecov](https://codecov.io/gh/libsv/go-bt/branch/master/graph/badge.svg?v=1)](https://codecov.io/gh/theflyingcodr/sockets)\n[![Go](https://img.shields.io/github/go-mod/go-version/theflyingcodr/sockets?v=1)](https://golang.org/)\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Documentation](#documentation)\n- [Examples \u0026 Tests](#examples--tests)\n- [Usage](#usage)\n- [Maintainers](#maintainers)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Installation\n\n**sockets** requires a [supported release of Go](https://golang.org/doc/devel/release.html#policy).\n\n```shell script\ngo get -u github.com/theflyingcodr/sockets\n```\n\n## Documentation\n\nView the generated [documentation](https://pkg.go.dev/github.com/theflyingcodr/sockets)\n\n[![GoDoc](https://godoc.org/github.com/theflyingcodr/sockets?status.svg\u0026style=flat)](https://pkg.go.dev/github.com/theflyingcodr/sockets)\n\nFor more information around the technical aspects of Bitcoin, please see the updated [Bitcoin Wiki](https://wiki.bitcoinsv.io/index.php/Main_Page)\n\n### Features\n\n- Client / Server implementations\n- Middleware\n- Error handlers\n- Listener funcs\n- Channel based messaging\n- Client reconnects\n- Broadcasting directly from server to client or to entire channel\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cstrong\u003e\u003ccode\u003eLibrary Deployment\u003c/code\u003e\u003c/strong\u003e\u003c/summary\u003e\n\u003cbr/\u003e\n\n[goreleaser](https://github.com/goreleaser/goreleaser) for easy binary or library deployment to Github and can be installed via: `brew install goreleaser`.\n\nThe [.goreleaser.yml](.goreleaser.yml) file is used to configure [goreleaser](https://github.com/goreleaser/goreleaser).\n\nUse `make release-snap` to create a snapshot version of the release, and finally `make release` to ship to production.\n\u003c/details\u003e\n\n## Examples \u0026 Tests\n\nAll unit tests and [examples](examples) run via [Github Actions](https://github.com/theflyingcodr/sockets/actions) and\nuses [Go version 1.17.x](https://golang.org/doc/go1.17). View the [configuration file](.github/workflows/go.yml).\n\nRun all tests\n\n```shell script\nmake pre-commit\n```\n\n## Usage\n\nView the [examples](examples)\n\n\u003cbr/\u003e\n\n## Maintainers\n\n| [\u003cimg src=\"https://github.com/theflyingcodr.png\" height=\"50\" alt=\"JH\" /\u003e](https://github.com/theflyingcodr) \n|:---:|\n|  [MS](https://github.com/theflyingcodr)| \n\n\u003cbr/\u003e\n\n## Contributing\n\nView the [contributing guidelines](CONTRIBUTING.md) and please follow the [code of conduct](CODE_OF_CONDUCT.md).\n\n### How can I help?\n\nAll kinds of contributions are welcome :raised_hands:!\nThe most basic way to show your support is to star :star2: the project, or to raise issues :speech_balloon:.\nYou can also support this project by [becoming a sponsor on GitHub](https://github.com/sponsors/theflyingcodr) :clap:\n\n\u003cbr/\u003e\n\n## License\n\n![License](https://img.shields.io/github/license/theflyingcodr/sockets.svg?style=flat\u0026v=1)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheflyingcodr%2Fsockets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheflyingcodr%2Fsockets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheflyingcodr%2Fsockets/lists"}