{"id":21003316,"url":"https://github.com/koding/rope","last_synced_at":"2026-04-20T16:34:30.881Z","repository":{"id":146362968,"uuid":"96408047","full_name":"koding/rope","owner":"koding","description":"Public registry for Kites with proxy support between kites","archived":false,"fork":false,"pushed_at":"2017-10-21T04:48:55.000Z","size":9246,"stargazers_count":0,"open_issues_count":9,"forks_count":0,"subscribers_count":6,"default_branch":"master","last_synced_at":"2026-01-01T18:39:11.963Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/koding.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-07-06T08:39:13.000Z","updated_at":"2018-11-14T19:27:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"ee9f62f7-e536-4e88-b272-e62ed6ccf674","html_url":"https://github.com/koding/rope","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/koding/rope","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koding%2Frope","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koding%2Frope/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koding%2Frope/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koding%2Frope/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/koding","download_url":"https://codeload.github.com/koding/rope/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koding%2Frope/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32055451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-19T08:24:47.387Z","updated_at":"2026-04-20T16:34:30.845Z","avatar_url":"https://github.com/koding.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Rope\n====\n\nRope is a public Kite registry with proxy support between kites. Also introduces bi-directional communication between Kites.\n\nGetting Started\n---------------\n\nBefore starting make sure to call `npm install` and `go get github.com/koding/kite` if you want to try go example. Then to start Rope server;\n\n```\n $ node rope.js\n```\n\nThis will start the server on `0.0.0.0:8080` which then you can run one of the node examples (in another terminal session);\n\n```\n $ node rope-node.js\n```\n\nwill create a Rope Node with Node.js, same file also supports browsers which you can try it out;\n\n```\n $ open rope-browser.html\n```\n\nwill load the `kite.js` bundle and then runs the `rope-node.js` which will create another Rope Node in the browser this time.\nTo try another Rope Node in Go this time;\n\n```\n $ go run rope-node.go\n```\n\nWhich will do the same with others.\n\nOnce ready, you can start playing with nodes by calling `run` over `Rope Server`. The best way to do that for now opening Dev Console in your choice of Browser after loading the `rope-browser.html`. Which will connect to `Rope Server`, identifies itself and will get a list of Kites registered before which you can access from `publicKites` global variable. There will be another public variable called `kite` which will allow you to interact with `Rope Server`. And for an example of usage of `run` over `Rope Server` would be (in Dev Console of rope-browser.html);\n\n## `kite.ping`\n\n```\n \u003e kite.tell('run', {kiteId: publicKites[0], method: \"kite.ping\"}).then(console.log.bind(console))\n pong\n```\nwill ping the first public kite which will end with a simple `pong`\n\n\n## `kite.systemInfo`\n\n```\n \u003e kite.tell('run', {kiteId: publicKites[0], method: \"kite.systemInfo\"}).then(console.log.bind(console))\n {\n   diskTotal: 975902848,\n   diskUsage: 328007624,\n   homeDir: \"/Users/gokmen\",\n   memoryUsage: 12602589184,\n   state: \"RUNNING\",\n   totalMemoryLimit: 17179869184,\n   uname: \"darwin\",\n }\n```\nwill return the system info from first public kite.\n\n\n## `kite.prompt`\n\n```\n \u003e kite.tell('run', {kiteId: publicKites[0], method: \"kite.prompt\", args: [\"Your Name? \"]}).then(console.log.bind(console))\n\n # on the terminal of first public kite you will see the prompt \"Your Name? \"\n\n   λ go run rope-node.go\n   2017-07-06 01:24:30 [dope] INFO     New listening: 0.0.0.0:49558\n   2017-07-06 01:24:30 [dope] INFO     Serving...\n   2017-07-06 01:24:30 [dope] INFO     Identify requested!\n   2017-07-06 01:24:30 [dope] INFO     Following Kites found on Rope: [8542b5e3-fc67-4c6b-a368-968c12d69357 11f4f2f9-1cd7-4f77-862b-4de07a42a991]\n   Your Name? Poyraz\n\n # once provided it will return the result to the browser console.\n Poyraz\n```\n\n## `square`\n\n```\n \u003e kite.tell('run', {kiteId: publicKites[0], method: \"square\", args: [5]}).then(console.log.bind(console))\n 25\n```\nyou can check it out the implementation in `rope-node.{go, js}`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoding%2Frope","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoding%2Frope","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoding%2Frope/lists"}