├── .airtap.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── img ├── full-mesh-formula.png └── full-mesh.png ├── index.js ├── package.json ├── perf ├── receive.js ├── send.js └── server.js └── test ├── basic.js ├── binary.js ├── common.js ├── multistream.js ├── negotiation.js ├── trickle.js └── z-cleanup.js /.airtap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/.airtap.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/README.md -------------------------------------------------------------------------------- /img/full-mesh-formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/img/full-mesh-formula.png -------------------------------------------------------------------------------- /img/full-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/img/full-mesh.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/package.json -------------------------------------------------------------------------------- /perf/receive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/perf/receive.js -------------------------------------------------------------------------------- /perf/send.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/perf/send.js -------------------------------------------------------------------------------- /perf/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/perf/server.js -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/test/basic.js -------------------------------------------------------------------------------- /test/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/test/binary.js -------------------------------------------------------------------------------- /test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/test/common.js -------------------------------------------------------------------------------- /test/multistream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/test/multistream.js -------------------------------------------------------------------------------- /test/negotiation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/test/negotiation.js -------------------------------------------------------------------------------- /test/trickle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/test/trickle.js -------------------------------------------------------------------------------- /test/z-cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitschabaude/simple-peer-light/HEAD/test/z-cleanup.js --------------------------------------------------------------------------------