{"id":17766660,"url":"https://github.com/floatdrop/grid","last_synced_at":"2025-04-01T13:45:19.275Z","repository":{"id":15850419,"uuid":"18590604","full_name":"floatdrop/grid","owner":"floatdrop","description":"Server for distributed WebRTC networking","archived":false,"fork":false,"pushed_at":"2014-05-13T19:26:08.000Z","size":357,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-14T01:31:41.732Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/floatdrop.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":"2014-04-09T08:37:08.000Z","updated_at":"2014-10-12T20:04:47.000Z","dependencies_parsed_at":"2022-09-24T05:01:37.423Z","dependency_job_id":null,"html_url":"https://github.com/floatdrop/grid","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/floatdrop%2Fgrid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/floatdrop%2Fgrid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/floatdrop%2Fgrid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/floatdrop%2Fgrid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/floatdrop","download_url":"https://codeload.github.com/floatdrop/grid/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246651510,"owners_count":20811991,"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-10-26T20:34:04.030Z","updated_at":"2025-04-01T13:45:19.251Z","avatar_url":"https://github.com/floatdrop.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Grid\n[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][depstat-image]][depstat-url]\n\nGrid - is signaling server for organizing distributed network over WebRTC protocol between browsers.\n\n## Standalone server\n\n```js\nvar grid = require('grid');\n\nvar server = grid({\n    port: 8080\n});\n```\n\n### Combining with existing express app\n\nWebSocket server needs server instance to bootup, so we should create express app, then get server from `listen` method and only after that bind PeerServer to express application.\n\n```javascript\nvar express = require('express');\nvar app = express();\nvar grid = require('grid');\n\napp.get('/', function (req, res, next) { res.send('Hello world!'); });\n\nvar server = app.listen(8080);\n\napp.use(grid({ server: server, path: '/api' }));\n```\n\n### API\n\nDocumentation on API coming soon.\n\n[npm-url]: https://npmjs.org/package/grid\n[npm-image]: http://img.shields.io/npm/v/grid.svg\n\n[travis-url]: https://travis-ci.org/GridJS/grid\n[travis-image]: http://img.shields.io/travis/GridJS/grid.svg\n\n[depstat-url]: https://gemnasium.com/GridJS/grid\n[depstat-image]: https://gemnasium.com/GridJS/grid.svg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffloatdrop%2Fgrid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffloatdrop%2Fgrid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffloatdrop%2Fgrid/lists"}