{"id":22475520,"url":"https://github.com/philips/libswarm2","last_synced_at":"2025-03-27T17:27:38.066Z","repository":{"id":17754270,"uuid":"20606915","full_name":"philips/libswarm2","owner":"philips","description":"A minimalist toolkit to compose network services","archived":false,"fork":false,"pushed_at":"2014-06-25T16:20:05.000Z","size":1949,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-01T20:31:38.800Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/philips.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-06-08T01:46:23.000Z","updated_at":"2016-05-21T07:57:00.000Z","dependencies_parsed_at":"2022-09-24T01:02:07.771Z","dependency_job_id":null,"html_url":"https://github.com/philips/libswarm2","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philips%2Flibswarm2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philips%2Flibswarm2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philips%2Flibswarm2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philips%2Flibswarm2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/philips","download_url":"https://codeload.github.com/philips/libswarm2/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245891451,"owners_count":20689336,"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":[],"created_at":"2024-12-06T13:18:04.572Z","updated_at":"2025-03-27T17:27:38.033Z","avatar_url":"https://github.com/philips.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Libswarm\n\n## A minimalist toolkit to compose network services\n\n\n*libswarm* is a minimalist toolkit to compose network services.\n\nIt exposes a simple API for the following tasks:\n\n* *Clustering*: deploy services on pools of interchangeable machines\n* *Composition*: combine multiple services into higher-level services of arbitrary complexity - it's services all the way down!\n* *Interconnection*: services can reliably and securely communicate with each other using asynchronous message passing, request/response, or raw sockets.\n* *Scale* services can run concurrently in the same process using goroutines and channels; in separate processes on the same machines using high-performance IPC;\non multiple machines in a local network; or across multiple datacenters.\n* *Integration*: incorporate your existing systems into your swarm. libswarm includes adapters to many popular infrastructure tools and services: docker, dns, mesos, etcd, fleet, deis, google compute, rackspace cloud, tutum, orchard, digital ocean, ssh, etc. It’s very easy to create your own adapter: just clone the repository at \n\n\n## Adapters\n\nLibswarm supports the following adapters:\n\n### Debug adapter\n\nThe debug backend simply catches all messages and prints them on the terminal for inspection.\n\n\n### Docker server adapter\n\n*Maintainer: Ben Firshman*\n\n### Docker client adapter\n\n*Maintainer: Aanand Prasad*\n\n### Pipeline adapter\n\n*Maintainer: Ben Firshman*\n\n### Filter adapter\n\n*Maintainer: Solomon Hykes*\n\n### Handler adapter\n\n*Maintainer: Solomon Hykes*\n\n### Task adapter\n\n*Maintainer: Solomon Hykes*\n\n### Go channel adapter\n\n*Maintainer: Solomon Hykes*\n\n### CLI adapter\n\n*Maintainer: Solomon Hykes*\n\n### Unix socket adapter\n\n*Maintainer: Solomon Hykes*\n\n### TCP adapter (client and server)\n\n*Help wanted!*\n\n### TLS adapter (client and server)\n\n*Help wanted!*\n\n### HTTP2/SPDY adapter (client and server)\n\n*Maintainer: Derek McGowan*\n\n### Etcd adapter\n\n*Help wanted!*\n\n### Geard adapter\n\n*Clayton Coleman*\n\n### Fork-exec adapter\n\n*Solomon Hykes*\n\n### Mesos adapter\n\n*Help wanted!*\n\n### Shipyard adapter\n\n*Brian Goff*\n\n### Fleet adapter\n\n*Help wanted!*\n\n### Google Compute adapter\n\n*Brendan Burns*\n\n### Rackspace cloud adapter\n\n*John Hopper*\n\n### EC2 adapter\n\n*Help wanted!*\n\n### Consul adapter\n\n*Help wanted!*\n\n### Openstack Nova adapter\n\n*Help wanted!*\n\n### Digital Ocean adapter\n\n*Help wanted!*\n\n### Softlayer adapter\n\n*Help wanted!*\n\n### Zerorpc adapter\n\n*Help wanted!*\n\n\n## Testing libswarm with swarmd\n\nLibswarm ships with a simple daemon which can control all machines in your distributed\nsystem using a variety of backend adaptors, and exposes it on a single, unified endpoint.\n\nUsage example:\n\n\nRun swarmd without arguments to list available backends:\n\n```\n./swarmd\n```\n\nPass a backend name as argument to load it:\n\n```\n./swarmd fakeclient\n```\n\nYou can pass arguments to the backend, like a shell command:\n\n```\n./swarmd 'dockerserver tcp://localhost:4243'\n```\n\nYou can call multiple backends. They will be executed in parallel, with the output\nof each backend connected to the input of the next, just like unix pipelines.\n\nThis allows for very powerful composition.\n\n```\n./swarmd 'dockerserver tcp://localhost:4243' 'debug' 'dockerclient unix:///var/run/docker.sock'\n```\n\n## Creators\n\n**Solomon Hykes**\n\n- \u003chttp://twitter.com/solomonstre\u003e\n- \u003chttp://github.com/shykes\u003e\n\n## Copyright and license\n\nCode and documentation copyright 2013-2014 Docker, inc. Code released under the Apache 2.0 license.\nDocs released under Creative commons.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphilips%2Flibswarm2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphilips%2Flibswarm2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphilips%2Flibswarm2/lists"}