├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── commands.yml │ └── publish.yml ├── .gitignore ├── .gitpod ├── .npmrc ├── HISTORY.md ├── LICENSE ├── README.md ├── examples └── instant_connect_example.js ├── index.d.ts ├── index.js ├── package.json ├── src └── instant_connect_proxy.js └── test └── basic.test.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/.github/workflows/commands.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | .vscode -------------------------------------------------------------------------------- /.gitpod: -------------------------------------------------------------------------------- 1 | tasks: 2 | - command: npm install -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/README.md -------------------------------------------------------------------------------- /examples/instant_connect_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/examples/instant_connect_example.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/package.json -------------------------------------------------------------------------------- /src/instant_connect_proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/src/instant_connect_proxy.js -------------------------------------------------------------------------------- /test/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrismarineJS/prismarine-proxy/HEAD/test/basic.test.js --------------------------------------------------------------------------------