{"id":13447504,"url":"https://github.com/joeferner/node-http-mitm-proxy","last_synced_at":"2025-05-15T04:08:04.332Z","repository":{"id":6212978,"uuid":"7444137","full_name":"joeferner/node-http-mitm-proxy","owner":"joeferner","description":"HTTP Man In The Middle (MITM) Proxy","archived":false,"fork":false,"pushed_at":"2024-07-13T21:10:58.000Z","size":476,"stargazers_count":677,"open_issues_count":92,"forks_count":165,"subscribers_count":21,"default_branch":"master","last_synced_at":"2025-05-09T04:08:23.060Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/joeferner.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2013-01-04T17:17:50.000Z","updated_at":"2025-05-04T14:16:36.000Z","dependencies_parsed_at":"2023-11-25T19:22:30.877Z","dependency_job_id":"759014ff-ed40-46d5-9a06-67b293656db1","html_url":"https://github.com/joeferner/node-http-mitm-proxy","commit_stats":{"total_commits":267,"total_committers":53,"mean_commits":5.037735849056604,"dds":0.6179775280898876,"last_synced_commit":"310a3bc8918b07b9c7dbdb345e358f8be2a74044"},"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joeferner%2Fnode-http-mitm-proxy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joeferner%2Fnode-http-mitm-proxy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joeferner%2Fnode-http-mitm-proxy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joeferner%2Fnode-http-mitm-proxy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joeferner","download_url":"https://codeload.github.com/joeferner/node-http-mitm-proxy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253416082,"owners_count":21904978,"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-07-31T05:01:19.533Z","updated_at":"2025-05-15T04:07:59.318Z","avatar_url":"https://github.com/joeferner.png","language":"TypeScript","funding_links":[],"categories":["JavaScript","\u003ca id=\"79499aeece9a2a9f64af6f61ee18cbea\"\u003e\u003c/a\u003e浏览嗅探\u0026\u0026流量拦截\u0026\u0026流量分析\u0026\u0026中间人","The List","\u003ca id=\"42f9e068b6511bcbb47d6b2b273097da\"\u003e\u003c/a\u003e未分类","TypeScript","Packages"],"sub_categories":["\u003ca id=\"11c73d3e2f71f3914a3bca35ba90de36\"\u003e\u003c/a\u003e中间人\u0026\u0026MITM","\u003ca id=\"3bd67ee9f322e2c85854991c85ed6da0\"\u003e\u003c/a\u003e投毒\u0026\u0026Poisoning"],"readme":"# HTTP MITM Proxy\n\nHTTP Man In The Middle (MITM) Proxy written in node.js. Supports capturing and modifying the request and response data.\n\n[![NPM version](http://img.shields.io/npm/v/http-mitm-proxy.svg)](https://www.npmjs.com/package/http-mitm-proxy)\n[![Downloads](https://img.shields.io/npm/dm/http-mitm-proxy.svg)](https://www.npmjs.com/package/http-mitm-proxy)\n[![Test Status](https://github.com/joeferner/node-http-mitm-proxy/workflows/Tests/badge.svg)](https://github.com/joeferner/node-http-mitm-proxy/actions)\n\n# Install\n\n`npm install --save http-mitm-proxy`\n\n## Node.js Compatibility\nThe library should work starting Node.js 8.x, but testing is only expected for currently supported LTS versions of Node.js starting Node.js 12.x . use on your own risk with non LTS Node.js versions.\n\n## Typescript\ntype definitions are now included in this project, no extra steps required.\n\n# Example\n\nThis example will modify any search results coming from google and replace all the result titles with \"Pwned!\".\n\n```javascript\nconst Proxy = require('http-mitm-proxy').Proxy;\n// or using import/module (package.json -\u003e \"type\": \"module\")\n// import { Proxy } from \"http-mitm-proxy\";\nconst proxy = new Proxy();\n\nproxy.onError(function(ctx, err) {\n  console.error('proxy error:', err);\n});\n\nproxy.onRequest(function(ctx, callback) {\n  if (ctx.clientToProxyRequest.headers.host == 'www.google.com'\n    \u0026\u0026 ctx.clientToProxyRequest.url.indexOf('/search') == 0) {\n    ctx.use(Proxy.gunzip);\n\n    ctx.onResponseData(function(ctx, chunk, callback) {\n      chunk = Buffer.from(chunk.toString().replace(/\u003ch3.*?\u003c\\/h3\u003e/g, '\u003ch3\u003ePwned!\u003c/h3\u003e'));\n      return callback(null, chunk);\n    });\n  }\n  return callback();\n});\n\nconsole.log('begin listening on 8081')\nproxy.listen({port: 8081});\n```\n\nYou can find more examples in the [examples directory](https://github.com/joeferner/node-http-mitm-proxy/tree/master/examples)\n\n# SSL\n\nUsing node-forge allows the automatic generation of SSL certificates within the proxy. After running your app you will find options.sslCaDir + '/certs/ca.pem' which can be imported to your browser, phone, etc.\n\n# API\n\n## Proxy\n * [listen(options)](#proxy_listen)\n * [close](#proxy_close)\n * [onError(fn)](#proxy_onError)\n * [onCertificateRequired](#proxy_onCertificateRequired)\n * [onCertificateMissing](#proxy_onCertificateMissing)\n * [onRequest(fn)](#proxy_onRequest)\n * [onRequestData(fn)](#proxy_onRequestData)\n * [onRequestEnd(fn)](#proxy_onRequestEnd)\n * [onResponse(fn)](#proxy_onResponse)\n * [onResponseData(fn)](#proxy_onResponseData)\n * [onResponseEnd(fn)](#proxy_onResponseEnd)\n * [onWebSocketConnection(fn)](#proxy_onWebSocketConnection)\n * [onWebSocketSend(fn)](#proxy_onWebSocketSend)\n * [onWebSocketMessage(fn)](#proxy_onWebSocketMessage)\n * [onWebSocketFrame(fn)](#proxy_onWebSocketFrame)\n * [onWebSocketError(fn)](#proxy_onWebSocketError)\n * [onWebSocketClose(fn)](#proxy_onWebSocketClose)\n * [use(fn)](#proxy_use)\n\n## Context\n\n Context functions only effect the current request/response. For example you may only want to gunzip requests\n made to a particular host.\n\n * isSSL: boolean,\n * clientToProxyRequest: [IncomingMessage](https://nodejs.org/api/http.html#http_http_incomingmessage),\n * proxyToClientResponse: [ServerResponse](https://nodejs.org/api/http.html#http_class_http_serverresponse),\n * proxyToServerRequest: [ClientRequest](https://nodejs.org/api/http.html#http_class_http_clientrequest),\n * serverToProxyResponse: [IncomingMessage](https://nodejs.org/api/http.html#http_http_incomingmessage),\n * [onError(fn)](#proxy_onError)\n * [onRequest(fn)](#proxy_onRequest)\n * [onRequestData(fn)](#proxy_onRequestData)\n * [onRequestEnd(fn)](#proxy_onRequestEnd)\n * [addRequestFilter(fn)](#context_addRequestFilter)\n * [onResponse(fn)](#proxy_onResponse)\n * [onResponseData(fn)](#proxy_onResponseData)\n * [onResponseEnd(fn)](#proxy_onResponseEnd)\n * [addResponseFilter(fn)](#context_addResponseFilter)\n * [use(mod)](#proxy_use)\n\n## WebSocket Context\n\nThe context available in websocket handlers is a bit different\n\n * isSSL: boolean,\n * clientToProxyWebSocket: [WebSocket](https://github.com/websockets/ws/blob/master/doc/ws.md#class-wswebsocket),\n * proxyToServerWebSocket: [WebSocket](https://github.com/websockets/ws/blob/master/doc/ws.md#class-wswebsocket),\n * [onWebSocketConnection(fn)](#proxy_onWebSocketConnection)\n * [onWebSocketSend(fn)](#proxy_onWebSocketSend)\n * [onWebSocketMessage(fn)](#proxy_onWebSocketMessage)\n * [onWebSocketFrame(fn)](#proxy_onWebSocketFrame)\n * [onWebSocketError(fn)](#proxy_onWebSocketError)\n * [onWebSocketClose(fn)](#proxy_onWebSocketClose)\n * [use(mod)](#proxy_use)\n\n\u003ca name=\"proxy\"/\u003e\n\n## Proxy\n\n\u003ca name=\"proxy_listen\" /\u003e\n\n### proxy.listen\n\nStarts the proxy listening on the given port.\n\n__Arguments__\n\n * options - An object with the following options:\n  * port - The port or named socket to listen on (default: 8080).\n  * host - The hostname or local address to listen on (default: 'localhost'). Pass '::' to listen on all IPv4/IPv6 interfaces.\n  * sslCaDir - Path to the certificates cache directory (default: process.cwd() + '/.http-mitm-proxy')\n  * keepAlive - enable [HTTP persistent connection](https://en.wikipedia.org/wiki/HTTP_persistent_connection)\n  * timeout - The number of milliseconds of inactivity before a socket is presumed to have timed out. Defaults to no timeout.\n  * httpAgent - The [http.Agent](https://nodejs.org/api/http.html#http_class_http_agent) to use when making http requests. Useful for chaining proxys. (default: internal Agent)\n  * httpsAgent - The [https.Agent](https://nodejs.org/api/https.html#https_class_https_agent) to use when making https requests. Useful for chaining proxys. (default: internal Agent)\n  * forceSNI - force use of [SNI](https://en.wikipedia.org/wiki/Server_Name_Indication) by the client. Allow node-http-mitm-proxy to handle all HTTPS requests with a single internal server.\n  * httpsPort - The port or named socket for https server to listen on. _(forceSNI must be enabled)_\n  * forceChunkedRequest - Setting this option will remove the content-length from the proxy to server request, forcing chunked encoding.\n\n__Example__\n\n    proxy.listen({ port: 80 });\n\n\u003ca name=\"proxy_close\" /\u003e\n\n### proxy.close\n\nStops the proxy listening.\n\n__Example__\n\n    proxy.close();\n\n\u003ca name=\"proxy_onError\" /\u003e\n\n### proxy.onError(fn) or ctx.onError(fn)\n\nAdds a function to the list of functions to get called if an error occures.\n\n__Arguments__\n\n * fn(ctx, err, errorKind) - The function to be called on an error.\n\n__Example__\n\n    proxy.onError(function(ctx, err, errorKind) {\n      // ctx may be null\n      var url = (ctx \u0026\u0026 ctx.clientToProxyRequest) ? ctx.clientToProxyRequest.url : \"\";\n      console.error(errorKind + ' on ' + url + ':', err);\n    });\n\n\u003ca name=\"proxy_onCertificateRequired\" /\u003e\n\n### proxy.onCertificateRequired = function(hostname, callback)\n\nAllows the default certificate name/path computation to be overwritten.\n\nThe default behavior expects `keys/{hostname}.pem` and `certs/{hostname}.pem` files to be at `self.sslCaDir`.\n\n__Arguments__\n\n * hostname - Requested hostname.\n * callback - The function to be called when certificate files' path were already computed.\n\n__Example 1__\n\n    proxy.onCertificateRequired = function(hostname, callback) {\n      return callback(null, {\n        keyFile: path.resolve('/ca/certs/', hostname + '.key'),\n        certFile: path.resolve('/ca/certs/', hostname + '.crt')\n      });\n    };\n\n__Example 2: Wilcard certificates__\n\n    proxy.onCertificateRequired = function(hostname, callback) {\n      return callback(null, {\n        keyFile: path.resolve('/ca/certs/', hostname + '.key'),\n        certFile: path.resolve('/ca/certs/', hostname + '.crt'),\n        hosts: [\"*.mydomain.com\"]\n      });\n    };\n\n\n\u003ca name=\"proxy_onCertificateMissing\" /\u003e\n\n### proxy.onCertificateMissing = function(ctx, files, callback)\n\nAllows you to handle missing certificate files for current request, for example, creating them on the fly.\n\n__Arguments__\n\n* ctx - Context with the following properties\n * hostname - The hostname which requires certificates\n * data.keyFileExists - Whether key file exists or not\n * data.certFileExists - Whether certificate file exists or not\n* files - missing files names (`files.keyFile`, `files.certFile` and optional `files.hosts`)\n* callback - The function to be called to pass certificate data back (`keyFileData` and `certFileData`)\n\n__Example 1__\n\n    proxy.onCertificateMissing = function(ctx, files, callback) {\n      console.log('Looking for \"%s\" certificates',   ctx.hostname);\n      console.log('\"%s\" missing', ctx.files.keyFile);\n      console.log('\"%s\" missing', ctx.files.certFile);\n\n      // Here you have the last chance to provide certificate files data\n      // A tipical use case would be creating them on the fly\n      //\n      // return callback(null, {\n      //   keyFileData: keyFileData,\n      //   certFileData: certFileData\n      // });\n      };\n\n__Example 2: Wilcard certificates__\n\n    proxy.onCertificateMissing = function(ctx, files, callback) {\n      return callback(null, {\n        keyFileData: keyFileData,\n        certFileData: certFileData,\n        hosts: [\"*.mydomain.com\"]\n      });\n    };\n\n\n\u003ca name=\"proxy_onRequest\" /\u003e\n\n### proxy.onRequest(fn) or ctx.onRequest(fn)\n\nAdds a function to get called at the beginning of a request.\n\n__Arguments__\n\n * fn(ctx, callback) - The function that gets called on each request.\n\n__Example__\n\n    proxy.onRequest(function(ctx, callback) {\n      console.log('REQUEST:', ctx.clientToProxyRequest.url);\n      return callback();\n    });\n\n\u003ca name=\"proxy_onRequestData\" /\u003e\n\n### proxy.onRequestData(fn) or ctx.onRequestData(fn)\n\nAdds a function to get called for each request data chunk (the body).\n\n__Arguments__\n\n * fn(ctx, chunk, callback) - The function that gets called for each data chunk.\n\n__Example__\n\n    proxy.onRequestData(function(ctx, chunk, callback) {\n      console.log('REQUEST DATA:', chunk.toString());\n      return callback(null, chunk);\n    });\n\n\u003ca name=\"proxy_onRequestEnd\" /\u003e\n\n### proxy.onRequestEnd(fn) or ctx.onRequestEnd(fn)\n\nAdds a function to get called when all request data (the body) was sent.\n\n__Arguments__\n\n * fn(ctx, callback) - The function that gets called when all request data (the body) was sent.\n\n__Example__\n\n    var chunks = [];\n    \n    proxy.onRequestData(function(ctx, chunk, callback) {\n      chunks.push(chunk);\n      return callback(null, chunk);\n    });\n\n    proxy.onRequestEnd(function(ctx, callback) {\n      console.log('REQUEST END', (Buffer.concat(chunks)).toString());\n      return callback();\n    });\n\n\u003ca name=\"proxy_onResponse\" /\u003e\n\n### proxy.onResponse(fn) or ctx.onResponse(fn)\n\nAdds a function to get called at the beginning of the response.\n\n__Arguments__\n\n * fn(ctx, callback) - The function that gets called on each response.\n\n__Example__\n\n    proxy.onResponse(function(ctx, callback) {\n      console.log('BEGIN RESPONSE');\n      return callback();\n    });\n\n\u003ca name=\"proxy_onResponseData\" /\u003e\n\n### proxy.onResponseData(fn) or ctx.onResponseData(fn)\n\nAdds a function to get called for each response data chunk (the body).\n\n__Arguments__\n\n * fn(ctx, chunk, callback) - The function that gets called for each data chunk.\n\n__Example__\n\n    proxy.onResponseData(function(ctx, chunk, callback) {\n      console.log('RESPONSE DATA:', chunk.toString());\n      return callback(null, chunk);\n    });\n\n\u003ca name=\"proxy_onResponseEnd\" /\u003e\n\n### proxy.onResponseEnd(fn) or ctx.onResponseEnd(fn)\n\nAdds a function to get called when the proxy request to server has ended.\n\n__Arguments__\n\n * fn(ctx, callback) - The function that gets called when the proxy request to server as ended.\n\n__Example__\n\n    proxy.onResponseEnd(function(ctx, callback) {\n      console.log('RESPONSE END');\n      return callback();\n    });\n\n\u003ca name=\"proxy_onWebSocketConnection\" /\u003e\n\n### proxy.onWebSocketConnection(fn) or ctx.onWebSocketConnection(fn)\n\nAdds a function to get called at the beginning of websocket connection\n\n__Arguments__\n\n * fn(ctx, callback) - The function that gets called for each data chunk.\n\n__Example__\n\n    proxy.onWebSocketConnection(function(ctx, callback) {\n      console.log('WEBSOCKET CONNECT:', ctx.clientToProxyWebSocket.upgradeReq.url);\n      return callback();\n    });\n\n\u003ca name=\"proxy_onWebSocketSend\" /\u003e\n\n### proxy.onWebSocketSend(fn) or ctx.onWebSocketSend(fn)\n\nAdds a function to get called for each WebSocket message sent by the client.\n\n__Arguments__\n\n * fn(ctx, message, flags, callback) - The function that gets called  for each WebSocket message sent by the client.\n\n__Example__\n\n    proxy.onWebSocketSend(function(ctx, message, flags, callback) {\n      console.log('WEBSOCKET SEND:', ctx.clientToProxyWebSocket.upgradeReq.url, message);\n      return callback(null, message, flags);\n    });\n\n\u003ca name=\"proxy_onWebSocketMessage\" /\u003e\n\n### proxy.onWebSocketMessage(fn) or ctx.onWebSocketMessage(fn)\n\nAdds a function to get called for each WebSocket message received from the server.\n\n__Arguments__\n\n * fn(ctx, message, flags, callback) - The function that gets called for each WebSocket message received from the server.\n\n__Example__\n\n    proxy.onWebSocketMessage(function(ctx, message, flags, callback) {\n      console.log('WEBSOCKET MESSAGE:', ctx.clientToProxyWebSocket.upgradeReq.url, message);\n      return callback(null, message, flags);\n    });\n\n\u003ca name=\"proxy_onWebSocketFrame\" /\u003e\n\n### proxy.onWebSocketFrame(fn) or ctx.onWebSocketFrame(fn)\n\nAdds a function to get called for each WebSocket frame exchanged (`message`, `ping` or `pong`).\n\n__Arguments__\n\n * fn(ctx, type, fromServer, data, flags, callback) - The function that gets called for each WebSocket frame exchanged.\n\n__Example__\n\n    proxy.onWebSocketFrame(function(ctx, type, fromServer, data, flags, callback) {\n      console.log('WEBSOCKET FRAME ' + type + ' received from ' + (fromServer ? 'server' : 'client'), ctx.clientToProxyWebSocket.upgradeReq.url, data);\n      return callback(null, data, flags);\n    });\n\n\u003ca name=\"proxy_onWebSocketError\" /\u003e\n\n### proxy.onWebSocketError(fn) or ctx.onWebSocketError(fn)\n\nAdds a function to the list of functions to get called if an error occures in WebSocket.\n\n__Arguments__\n\n * fn(ctx, err) - The function to be called on an error in WebSocket.\n\n__Example__\n\n    proxy.onWebSocketError(function(ctx, err) {\n      console.log('WEBSOCKET ERROR:', ctx.clientToProxyWebSocket.upgradeReq.url, err);\n    });\n \n\u003ca name=\"proxy_onWebSocketClose\" /\u003e\n\n### proxy.onWebSocketClose(fn) or ctx.onWebSocketClose(fn)\n\nAdds a function to get called when a WebSocket connection is closed\n\n__Arguments__\n\n * fn(ctx, code, message, callback) - The function that gets when a WebSocket is closed.\n\n__Example__\n\n    proxy.onWebSocketClose(function(ctx, code, message, callback) {\n      console.log('WEBSOCKET CLOSED BY '+(ctx.closedByServer ? 'SERVER' : 'CLIENT'), ctx.clientToProxyWebSocket.upgradeReq.url, code, message);\n      callback(null, code, message);\n    });\n\n\u003ca name=\"proxy_use\" /\u003e\n\n### proxy.use(module) or ctx.use(module)\n\nAdds a module into the proxy. Modules encapsulate multiple life cycle processing functions into one object.\n\n__Arguments__\n\n * module - The module to add. Modules contain a hash of functions to add.\n\n__Example__\n\n    proxy.use({\n      onError: function(ctx, err) { },\n      onCertificateRequired: function(hostname, callback) { return callback(); },\n      onCertificateMissing: function(ctx, files, callback) { return callback(); },\n      onRequest: function(ctx, callback) { return callback(); },\n      onRequestData: function(ctx, chunk, callback) { return callback(null, chunk); },\n      onResponse: function(ctx, callback) { return callback(); },\n      onResponseData: function(ctx, chunk, callback) { return callback(null, chunk); },\n      onWebSocketConnection: function(ctx, callback) { return callback(); },\n      onWebSocketSend: function(ctx, message, flags, callback) { return callback(null, message, flags); },\n      onWebSocketMessage: function(ctx, message, flags, callback) { return callback(null, message, flags); },\n      onWebSocketError: function(ctx, err) {  },\n      onWebSocketClose: function(ctx, code, message, callback) {  },\n    });\n\nnode-http-mitm-proxy provide some ready to use modules:\n- `Proxy.gunzip` Gunzip response filter (uncompress gzipped content before onResponseData and compress back after)\n- `Proxy.wildcard` Generates wilcard certificates by default (so less certificates are generated)\n\n\u003ca name=\"context\"/\u003e\n\n## Context\n\n\u003ca name=\"context_addRequestFilter\" /\u003e\n\n### ctx.addRequestFilter(stream)\n\nAdds a stream into the request body stream.\n\n__Arguments__\n\n * stream - The read/write stream to add in the request body stream.\n\n__Example__\n\n    ctx.addRequestFilter(zlib.createGunzip());\n\n\u003ca name=\"context_addRequestFilter\" /\u003e\n\n### ctx.addResponseFilter(stream)\n\nAdds a stream into the response body stream.\n\n__Arguments__\n\n * stream - The read/write stream to add in the response body stream.\n\n__Example__\n\n    ctx.addResponseFilter(zlib.createGunzip());\n\n# License\n\n```\nCopyright (c) 2015 Joe Ferner\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\n\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\n\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoeferner%2Fnode-http-mitm-proxy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoeferner%2Fnode-http-mitm-proxy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoeferner%2Fnode-http-mitm-proxy/lists"}