{"id":20050033,"url":"https://github.com/kldzj/proxy-protocol","last_synced_at":"2025-05-05T11:31:03.022Z","repository":{"id":57682773,"uuid":"489485986","full_name":"kldzj/proxy-protocol","owner":"kldzj","description":"Add PROXY v1 or v2 support to net, http, https, spdy and http2 servers. IPv4 and IPv6 protocols supported.","archived":false,"fork":false,"pushed_at":"2023-09-27T22:09:59.000Z","size":145,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-02T10:58:55.984Z","etag":null,"topics":["nodejs","proxy-protocol","socket"],"latest_commit_sha":null,"homepage":"https://npmjs.com/@kldzj/proxy-protocol","language":"TypeScript","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/kldzj.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":"2022-05-06T20:30:44.000Z","updated_at":"2024-03-12T00:59:02.000Z","dependencies_parsed_at":"2023-02-08T05:45:24.787Z","dependency_job_id":null,"html_url":"https://github.com/kldzj/proxy-protocol","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kldzj%2Fproxy-protocol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kldzj%2Fproxy-protocol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kldzj%2Fproxy-protocol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kldzj%2Fproxy-protocol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kldzj","download_url":"https://codeload.github.com/kldzj/proxy-protocol/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252488948,"owners_count":21756241,"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":["nodejs","proxy-protocol","socket"],"created_at":"2024-11-13T11:53:49.211Z","updated_at":"2025-05-05T11:31:02.678Z","avatar_url":"https://github.com/kldzj.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# proxy-protocol\n\nAdd PROXY v1 or v2 support to net, http, https, spdy and http2 servers. IPv4 and IPv6 protocols supported\n\n## History\n\nThis module is a TypeScript rewrite of original [proxywrap](https://github.com/cusspvz/proxywrap) by [Josh Dague](https://github.com/daguej) and [José Moreira](https://github.com/cusspvz).\n\n## What's the purpose of this module?\n\nThis module wraps node's various `Server` interfaces so that they are compatible with the [PROXY protocol](http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt). It automatically parses the PROXY headers and resets `socket.remoteAddress` and `socket.remotePort` so that they have the correct values.\n\nThis module is especially useful if you need to get the client IP address when you're behind an AWS ELB in TCP mode.\n\nIn HTTP or HTTPS mode (aka SSL termination at ELB), the ELB inserts `X-Forwarded-For` headers for you. However, in TCP mode, the ELB can't understand the underlying protocol, so you lose the client's IP address. With the PROXY protocol and this module, you're able to retain the client IP address with any protocol.\n\nIn order for this module to work with ELB, you must [enable the PROXY protocol on your ELB](http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/enable-proxy-protocol.html) (or whatever proxy your app is behind).\n\n## Compability\n\nThis module is only compatible with **LTS** and **latest stable** versions of [node](https://github.com/nodejs/node).\n\n## Installing\n\n```bash\nnpm install --save @kldzj/proxy-protocol\n```\n\n## Usage\n\n**proxywrap** is a drop-in replacement. Here's a simple Express app:\n\n```js\nvar http = require('http');\nvar proxiedHttp = require('@kldzj/proxy-protocol').proxy(http);\nvar express = require('express');\nvar app = express();\n\n// instead of http.createServer(app)\nvar srv = proxiedHttp.createServer(app).listen(80);\n\napp.get('/', (req, res) =\u003e {\n  res.send('IP = ' + req.connection.remoteAddress + ':' + req.connection.remotePort);\n});\n```\n\nThe magic happens in the `proxywrap.proxy()` call. It wraps the module's `Server` constructor and handles a bunch of messy details for you.\n\nYou can do the same with `net` (raw TCP streams), `https`, and `spdy`. It will probably work with other modules that follow the same pattern, but none have been tested.\n\n_Note_: If you're wrapping [node-spdy](https://github.com/indutny/node-spdy), its exports are a little strange:\n\n    var proxiedSpdy = require('@kldzj/proxy-protocol').proxy(require('spdy').server);\n\nThis also adds to all your sockets the properties:\n\n- `socket.clientAddress` - The IP Address that connected to your PROXY.\n- `socket.clientPort` - The Port used by who connected to your PROXY.\n- `socket.proxyAddress` - The IP Address exposed on Client \u003c-\u003e Proxy side.\n- `socket.proxyPort` - The Port exposed on Client \u003c-\u003e Proxy side. Usefull for detecting SSL on AWS ELB.\n- `socket.remoteAddress` [optional] - Same as `socket.clientAddress`, used for compability proposes.\n- `socket.remotePort` [optional] - Same as `socket.clientPort`, used for compability proposes.\n\n**Warning:** By default, _all_ traffic to your proxied server MUST use the PROXY protocol. If the first five bytes received aren't `PROXY`, the connection will be dropped. Obviously, the node server accepting PROXY connections should not be exposed directly to the internet; only the proxy (whether ELB, HAProxy, or something else) should be able to connect to node.\n\n## API\n\n### `proxy(Server[, options])`\n\nWraps something that inherits from the `net` module, exposing a `Server` and `createServer`. Returns the same module patched to support the PROXY protocol.\n\nOptions:\n\n- `strict` (default `true`): Incoming connections MUST use the PROXY protocol. If the first five bytes received aren't `PROXY`, the connection will be dropped. Disabling this option will allow connections that don't use the PROXY protocol (so long as the first bytes sent aren't `PROXY`). Disabling this option poses a security risk; it should be enabled in production.\n\n- `ignoreStrictExceptions` (default `false`): `strict` shutdowns your process with an error attached, meaning that if it isn't being caught on socket's `error` event, node will terminate process with an `uncaughtException`. This option tells `strict` methods to destroy sockets without providing the exception, so `node` ignores it. See [#11](https://github.com/findhit/proxywrap/issues/11) for more info.\n\n- `overrideRemote` (default `true`): **findhit-proxywrap** overrides `socket.remoteAddress` and `socket.remotePort` for compability proposes. If you set this as `false`, your `socket.remoteAddress` and `socket.remotePort` will have the Address and Port of your **load-balancer** or whatever you are using behind your app. You can also access client's Address and Port by using `socket.clientAddress` and `socket.clientPort`.\n\n## Thanks\n\nThanks to all contibuters and special thanks to [Josh Dague](https://github.com/daguej) for creating original [proxywrap](https://github.com/daguej/node-proxywrap).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkldzj%2Fproxy-protocol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkldzj%2Fproxy-protocol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkldzj%2Fproxy-protocol/lists"}