├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── benchmarks ├── README.md ├── hello.js └── proxy.js ├── compat.js ├── index.d.ts ├── index.js ├── package.json ├── tests ├── compat.test.js └── proxy.test.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- 1 | ```sh 2 | $ wrk -c 20 -d30s -t 2 http://127.0.0.1:8000 3 | ``` 4 | -------------------------------------------------------------------------------- /benchmarks/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/benchmarks/hello.js -------------------------------------------------------------------------------- /benchmarks/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/benchmarks/proxy.js -------------------------------------------------------------------------------- /compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/compat.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/package.json -------------------------------------------------------------------------------- /tests/compat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/tests/compat.test.js -------------------------------------------------------------------------------- /tests/proxy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/tests/proxy.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxtedition/node-http2-proxy/HEAD/yarn.lock --------------------------------------------------------------------------------