[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-3358":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":16,"forks30d":16,"starsTrendScore":19,"compositeScore":20,"rankGlobal":10,"rankLanguage":10,"license":21,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":22,"hasPages":22,"topics":24,"createdAt":10,"pushedAt":10,"updatedAt":25,"readmeContent":26,"aiSummary":27,"trendingCount":16,"starSnapshotCount":16,"syncStatus":17,"lastSyncTime":28,"discoverSource":29},3358,"node-http-proxy","http-party\u002Fnode-http-proxy","http-party","A full-featured http proxy for node.js","https:\u002F\u002Fgithub.com\u002Fhttp-party\u002Fnode-http-proxy",null,"JavaScript",14138,2008,259,513,0,2,6,1,44.91,"Other",false,"master",[],"2026-06-12 02:00:49","\u003Cp align=\"center\">\n  \u003Cimg src=\"https:\u002F\u002Fraw.github.com\u002Fhttp-party\u002Fnode-http-proxy\u002Fmaster\u002Fdoc\u002Flogo.png\"\u002F>\n\u003C\u002Fp>\n\n# node-http-proxy [![Build Status](https:\u002F\u002Ftravis-ci.org\u002Fhttp-party\u002Fnode-http-proxy.svg?branch=master)](https:\u002F\u002Ftravis-ci.org\u002Fhttp-party\u002Fnode-http-proxy) [![codecov](https:\u002F\u002Fcodecov.io\u002Fgh\u002Fhttp-party\u002Fnode-http-proxy\u002Fbranch\u002Fmaster\u002Fgraph\u002Fbadge.svg)](https:\u002F\u002Fcodecov.io\u002Fgh\u002Fhttp-party\u002Fnode-http-proxy)\n\n`node-http-proxy` is an HTTP programmable proxying library that supports\nwebsockets. It is suitable for implementing components such as reverse\nproxies and load balancers.\n\n### Table of Contents\n  * [Installation](#installation)\n  * [Upgrading from 0.8.x ?](#upgrading-from-08x-)\n  * [Core Concept](#core-concept)\n  * [Use Cases](#use-cases)\n    * [Setup a basic stand-alone proxy server](#setup-a-basic-stand-alone-proxy-server)\n    * [Setup a stand-alone proxy server with custom server logic](#setup-a-stand-alone-proxy-server-with-custom-server-logic)\n    * [Setup a stand-alone proxy server with proxy request header re-writing](#setup-a-stand-alone-proxy-server-with-proxy-request-header-re-writing)\n    * [Modify a response from a proxied server](#modify-a-response-from-a-proxied-server)\n    * [Setup a stand-alone proxy server with latency](#setup-a-stand-alone-proxy-server-with-latency)\n    * [Using HTTPS](#using-https)\n    * [Proxying WebSockets](#proxying-websockets)\n  * [Options](#options)\n  * [Listening for proxy events](#listening-for-proxy-events)\n  * [Shutdown](#shutdown)\n  * [Miscellaneous](#miscellaneous)\n    * [Test](#test)\n    * [ProxyTable API](#proxytable-api)\n    * [Logo](#logo)\n  * [Contributing and Issues](#contributing-and-issues)\n  * [License](#license)\n\n### Installation\n\n`npm install http-proxy --save`\n\n**[Back to top](#table-of-contents)**\n\n### Upgrading from 0.8.x ?\n\nClick [here](UPGRADING.md)\n\n**[Back to top](#table-of-contents)**\n\n### Core Concept\n\nA new proxy is created by calling `createProxyServer` and passing\nan `options` object as argument ([valid properties are available here](lib\u002Fhttp-proxy.js#L26-L42))\n\n```javascript\nvar httpProxy = require('http-proxy');\n\nvar proxy = httpProxy.createProxyServer(options); \u002F\u002F See (†)\n```\n†Unless listen(..) is invoked on the object, this does not create a webserver. See below.\n\nAn object will be returned with four methods:\n\n* web `req, res, [options]` (used for proxying regular HTTP(S) requests)\n* ws `req, socket, head, [options]` (used for proxying WS(S) requests)\n* listen `port` (a function that wraps the object in a webserver, for your convenience)\n* close `[callback]` (a function that closes the inner webserver and stops listening on given port)\n\nIt is then possible to proxy requests by calling these functions\n\n```javascript\nhttp.createServer(function(req, res) {\n  proxy.web(req, res, { target: 'http:\u002F\u002Fmytarget.com:8080' });\n});\n```\n\nErrors can be listened on either using the Event Emitter API\n\n```javascript\nproxy.on('error', function(e) {\n  ...\n});\n```\n\nor using the callback API\n\n```javascript\nproxy.web(req, res, { target: 'http:\u002F\u002Fmytarget.com:8080' }, function(e) { ... });\n```\n\nWhen a request is proxied it follows two different pipelines ([available here](lib\u002Fhttp-proxy\u002Fpasses))\nwhich apply transformations to both the `req` and `res` object.\nThe first pipeline (incoming) is responsible for the creation and manipulation of the stream that connects your client to the target.\nThe second pipeline (outgoing) is responsible for the creation and manipulation of the stream that, from your target, returns data\nto the client.\n\n**[Back to top](#table-of-contents)**\n\n### Use Cases\n\n#### Setup a basic stand-alone proxy server\n\n```js\nvar http = require('http'),\n    httpProxy = require('http-proxy');\n\u002F\u002F\n\u002F\u002F Create your proxy server and set the target in the options.\n\u002F\u002F\nhttpProxy.createProxyServer({target:'http:\u002F\u002Flocalhost:9000'}).listen(8000); \u002F\u002F See (†)\n\n\u002F\u002F\n\u002F\u002F Create your target server\n\u002F\u002F\nhttp.createServer(function (req, res) {\n  res.writeHead(200, { 'Content-Type': 'text\u002Fplain' });\n  res.write('request successfully proxied!' + '\\n' + JSON.stringify(req.headers, true, 2));\n  res.end();\n}).listen(9000);\n```\n†Invoking listen(..) triggers the creation of a web server. Otherwise, just the proxy instance is created.\n\n**[Back to top](#table-of-contents)**\n\n#### Setup a stand-alone proxy server with custom server logic\nThis example shows how you can proxy a request using your own HTTP server\nand also you can put your own logic to handle the request.\n\n```js\nvar http = require('http'),\n    httpProxy = require('http-proxy');\n\n\u002F\u002F\n\u002F\u002F Create a proxy server with custom application logic\n\u002F\u002F\nvar proxy = httpProxy.createProxyServer({});\n\n\u002F\u002F\n\u002F\u002F Create your custom server and just call `proxy.web()` to proxy\n\u002F\u002F a web request to the target passed in the options\n\u002F\u002F also you can use `proxy.ws()` to proxy a websockets request\n\u002F\u002F\nvar server = http.createServer(function(req, res) {\n  \u002F\u002F You can define here your custom logic to handle the request\n  \u002F\u002F and then proxy the request.\n  proxy.web(req, res, { target: 'http:\u002F\u002F127.0.0.1:5050' });\n});\n\nconsole.log(\"listening on port 5050\")\nserver.listen(5050);\n```\n\n**[Back to top](#table-of-contents)**\n\n#### Setup a stand-alone proxy server with proxy request header re-writing\nThis example shows how you can proxy a request using your own HTTP server that\nmodifies the outgoing proxy request by adding a special header.\n\n```js\nvar http = require('http'),\n    httpProxy = require('http-proxy');\n\n\u002F\u002F\n\u002F\u002F Create a proxy server with custom application logic\n\u002F\u002F\nvar proxy = httpProxy.createProxyServer({});\n\n\u002F\u002F To modify the proxy connection before data is sent, you can listen\n\u002F\u002F for the 'proxyReq' event. When the event is fired, you will receive\n\u002F\u002F the following arguments:\n\u002F\u002F (http.ClientRequest proxyReq, http.IncomingMessage req,\n\u002F\u002F  http.ServerResponse res, Object options). This mechanism is useful when\n\u002F\u002F you need to modify the proxy request before the proxy connection\n\u002F\u002F is made to the target.\n\u002F\u002F\nproxy.on('proxyReq', function(proxyReq, req, res, options) {\n  proxyReq.setHeader('X-Special-Proxy-Header', 'foobar');\n});\n\nvar server = http.createServer(function(req, res) {\n  \u002F\u002F You can define here your custom logic to handle the request\n  \u002F\u002F and then proxy the request.\n  proxy.web(req, res, {\n    target: 'http:\u002F\u002F127.0.0.1:5050'\n  });\n});\n\nconsole.log(\"listening on port 5050\")\nserver.listen(5050);\n```\n\n**[Back to top](#table-of-contents)**\n\n#### Modify a response from a proxied server\nSometimes when you have received a HTML\u002FXML document from the server of origin you would like to modify it before forwarding it on.\n\n[Harmon](https:\u002F\u002Fgithub.com\u002FNo9\u002Fharmon) allows you to do this in a streaming style so as to keep the pressure on the proxy to a minimum.\n\n**[Back to top](#table-of-contents)**\n\n#### Setup a stand-alone proxy server with latency\n\n```js\nvar http = require('http'),\n    httpProxy = require('http-proxy');\n\n\u002F\u002F\n\u002F\u002F Create a proxy server with latency\n\u002F\u002F\nvar proxy = httpProxy.createProxyServer();\n\n\u002F\u002F\n\u002F\u002F Create your server that makes an operation that waits a while\n\u002F\u002F and then proxies the request\n\u002F\u002F\nhttp.createServer(function (req, res) {\n  \u002F\u002F This simulates an operation that takes 500ms to execute\n  setTimeout(function () {\n    proxy.web(req, res, {\n      target: 'http:\u002F\u002Flocalhost:9008'\n    });\n  }, 500);\n}).listen(8008);\n\n\u002F\u002F\n\u002F\u002F Create your target server\n\u002F\u002F\nhttp.createServer(function (req, res) {\n  res.writeHead(200, { 'Content-Type': 'text\u002Fplain' });\n  res.write('request successfully proxied to: ' + req.url + '\\n' + JSON.stringify(req.headers, true, 2));\n  res.end();\n}).listen(9008);\n```\n\n**[Back to top](#table-of-contents)**\n\n#### Using HTTPS\nYou can activate the validation of a secure SSL certificate to the target connection (avoid self-signed certs), just set `secure: true` in the options.\n\n##### HTTPS -> HTTP\n\n```js\n\u002F\u002F\n\u002F\u002F Create the HTTPS proxy server in front of a HTTP server\n\u002F\u002F\nhttpProxy.createServer({\n  target: {\n    host: 'localhost',\n    port: 9009\n  },\n  ssl: {\n    key: fs.readFileSync('valid-ssl-key.pem', 'utf8'),\n    cert: fs.readFileSync('valid-ssl-cert.pem', 'utf8')\n  }\n}).listen(8009);\n```\n\n##### HTTPS -> HTTPS\n\n```js\n\u002F\u002F\n\u002F\u002F Create the proxy server listening on port 443\n\u002F\u002F\nhttpProxy.createServer({\n  ssl: {\n    key: fs.readFileSync('valid-ssl-key.pem', 'utf8'),\n    cert: fs.readFileSync('valid-ssl-cert.pem', 'utf8')\n  },\n  target: 'https:\u002F\u002Flocalhost:9010',\n  secure: true \u002F\u002F Depends on your needs, could be false.\n}).listen(443);\n```\n\n##### HTTP -> HTTPS (using a PKCS12 client certificate)\n\n```js\n\u002F\u002F\n\u002F\u002F Create an HTTP proxy server with an HTTPS target\n\u002F\u002F\nhttpProxy.createProxyServer({\n  target: {\n    protocol: 'https:',\n    host: 'my-domain-name',\n    port: 443,\n    pfx: fs.readFileSync('path\u002Fto\u002Fcertificate.p12'),\n    passphrase: 'password',\n  },\n  changeOrigin: true,\n}).listen(8000);\n```\n\n**[Back to top](#table-of-contents)**\n\n#### Proxying WebSockets\nYou can activate the websocket support for the proxy using `ws:true` in the options.\n\n```js\n\u002F\u002F\n\u002F\u002F Create a proxy server for websockets\n\u002F\u002F\nhttpProxy.createServer({\n  target: 'ws:\u002F\u002Flocalhost:9014',\n  ws: true\n}).listen(8014);\n```\n\nAlso you can proxy the websocket requests just calling the `ws(req, socket, head)` method.\n\n```js\n\u002F\u002F\n\u002F\u002F Setup our server to proxy standard HTTP requests\n\u002F\u002F\nvar proxy = new httpProxy.createProxyServer({\n  target: {\n    host: 'localhost',\n    port: 9015\n  }\n});\nvar proxyServer = http.createServer(function (req, res) {\n  proxy.web(req, res);\n});\n\n\u002F\u002F\n\u002F\u002F Listen to the `upgrade` event and proxy the\n\u002F\u002F WebSocket requests as well.\n\u002F\u002F\nproxyServer.on('upgrade', function (req, socket, head) {\n  proxy.ws(req, socket, head);\n});\n\nproxyServer.listen(8015);\n```\n\n**[Back to top](#table-of-contents)**\n\n### Options\n\n`httpProxy.createProxyServer` supports the following options:\n\n*  **target**: url string to be parsed with the url module\n*  **forward**: url string to be parsed with the url module\n*  **agent**: object to be passed to http(s).request (see Node's [https agent](http:\u002F\u002Fnodejs.org\u002Fapi\u002Fhttps.html#https_class_https_agent) and [http agent](http:\u002F\u002Fnodejs.org\u002Fapi\u002Fhttp.html#http_class_http_agent) objects)\n*  **ssl**: object to be passed to https.createServer()\n*  **ws**: true\u002Ffalse, if you want to proxy websockets\n*  **xfwd**: true\u002Ffalse, adds x-forward headers\n*  **secure**: true\u002Ffalse, if you want to verify the SSL Certs\n*  **toProxy**: true\u002Ffalse, passes the absolute URL as the `path` (useful for proxying to proxies)\n*  **prependPath**: true\u002Ffalse, Default: true - specify whether you want to prepend the target's path to the proxy path\n*  **ignorePath**: true\u002Ffalse, Default: false - specify whether you want to ignore the proxy path of the incoming request (note: you will have to append \u002F manually if required).\n*  **localAddress**: Local interface string to bind for outgoing connections\n*  **changeOrigin**: true\u002Ffalse, Default: false - changes the origin of the host header to the target URL\n*  **preserveHeaderKeyCase**: true\u002Ffalse, Default: false - specify whether you want to keep letter case of response header key\n*  **auth**: Basic authentication i.e. 'user:password' to compute an Authorization header.\n*  **hostRewrite**: rewrites the location hostname on (201\u002F301\u002F302\u002F307\u002F308) redirects.\n*  **autoRewrite**: rewrites the location host\u002Fport on (201\u002F301\u002F302\u002F307\u002F308) redirects based on requested host\u002Fport. Default: false.\n*  **protocolRewrite**: rewrites the location protocol on (201\u002F301\u002F302\u002F307\u002F308) redirects to 'http' or 'https'. Default: null.\n*  **cookieDomainRewrite**: rewrites domain of `set-cookie` headers. Possible values:\n   * `false` (default): disable cookie rewriting\n   * String: new domain, for example `cookieDomainRewrite: \"new.domain\"`. To remove the domain, use `cookieDomainRewrite: \"\"`.\n   * Object: mapping of domains to new domains, use `\"*\"` to match all domains.\n     For example keep one domain unchanged, rewrite one domain and remove other domains:\n     ```\n     cookieDomainRewrite: {\n       \"unchanged.domain\": \"unchanged.domain\",\n       \"old.domain\": \"new.domain\",\n       \"*\": \"\"\n     }\n     ```\n*  **cookiePathRewrite**: rewrites path of `set-cookie` headers. Possible values:\n   * `false` (default): disable cookie rewriting\n   * String: new path, for example `cookiePathRewrite: \"\u002FnewPath\u002F\"`. To remove the path, use `cookiePathRewrite: \"\"`. To set path to root use `cookiePathRewrite: \"\u002F\"`.\n   * Object: mapping of paths to new paths, use `\"*\"` to match all paths.\n     For example, to keep one path unchanged, rewrite one path and remove other paths:\n     ```\n     cookiePathRewrite: {\n       \"\u002Funchanged.path\u002F\": \"\u002Funchanged.path\u002F\",\n       \"\u002Fold.path\u002F\": \"\u002Fnew.path\u002F\",\n       \"*\": \"\"\n     }\n     ```\n*  **headers**: object with extra headers to be added to target requests.\n*  **proxyTimeout**: timeout (in millis) for outgoing proxy requests\n*  **timeout**: timeout (in millis) for incoming requests\n*  **followRedirects**: true\u002Ffalse, Default: false - specify whether you want to follow redirects\n*  **selfHandleResponse** true\u002Ffalse, if set to true, none of the webOutgoing passes are called and it's your responsibility to appropriately return the response by listening and acting on the `proxyRes` event\n*  **buffer**: stream of data to send as the request body.  Maybe you have some middleware that consumes the request stream before proxying it on e.g.  If you read the body of a request into a field called 'req.rawbody' you could restream this field in the buffer option:\n\n    ```\n    'use strict';\n\n    const streamify = require('stream-array');\n    const HttpProxy = require('http-proxy');\n    const proxy = new HttpProxy();\n\n    module.exports = (req, res, next) => {\n\n      proxy.web(req, res, {\n        target: 'http:\u002F\u002Flocalhost:4003\u002F',\n        buffer: streamify(req.rawBody)\n      }, next);\n\n    };\n    ```\n\n**NOTE:**\n`options.ws` and `options.ssl` are optional.\n`options.target` and `options.forward` cannot both be missing\n\nIf you are using the `proxyServer.listen` method, the following options are also applicable:\n\n *  **ssl**: object to be passed to https.createServer()\n *  **ws**: true\u002Ffalse, if you want to proxy websockets\n\n\n**[Back to top](#table-of-contents)**\n\n### Listening for proxy events\n\n* `error`: The error event is emitted if the request to the target fail. **We do not do any error handling of messages passed between client and proxy, and messages passed between proxy and target, so it is recommended that you listen on errors and handle them.**\n* `proxyReq`: This event is emitted before the data is sent. It gives you a chance to alter the proxyReq request object. Applies to \"web\" connections\n* `proxyReqWs`: This event is emitted before the data is sent. It gives you a chance to alter the proxyReq request object. Applies to \"websocket\" connections\n* `proxyRes`: This event is emitted if the request to the target got a response.\n* `open`: This event is emitted once the proxy websocket was created and piped into the target websocket.\n* `close`: This event is emitted once the proxy websocket was closed.\n* (DEPRECATED) `proxySocket`: Deprecated in favor of `open`.\n\n```js\nvar httpProxy = require('http-proxy');\n\u002F\u002F Error example\n\u002F\u002F\n\u002F\u002F Http Proxy Server with bad target\n\u002F\u002F\nvar proxy = httpProxy.createServer({\n  target:'http:\u002F\u002Flocalhost:9005'\n});\n\nproxy.listen(8005);\n\n\u002F\u002F\n\u002F\u002F Listen for the `error` event on `proxy`.\nproxy.on('error', function (err, req, res) {\n  res.writeHead(500, {\n    'Content-Type': 'text\u002Fplain'\n  });\n\n  res.end('Something went wrong. And we are reporting a custom error message.');\n});\n\n\u002F\u002F\n\u002F\u002F Listen for the `proxyRes` event on `proxy`.\n\u002F\u002F\nproxy.on('proxyRes', function (proxyRes, req, res) {\n  console.log('RAW Response from the target', JSON.stringify(proxyRes.headers, true, 2));\n});\n\n\u002F\u002F\n\u002F\u002F Listen for the `open` event on `proxy`.\n\u002F\u002F\nproxy.on('open', function (proxySocket) {\n  \u002F\u002F listen for messages coming FROM the target here\n  proxySocket.on('data', hybiParseAndLogMessage);\n});\n\n\u002F\u002F\n\u002F\u002F Listen for the `close` event on `proxy`.\n\u002F\u002F\nproxy.on('close', function (res, socket, head) {\n  \u002F\u002F view disconnected websocket connections\n  console.log('Client disconnected');\n});\n```\n\n**[Back to top](#table-of-contents)**\n\n### Shutdown\n\n* When testing or running server within another program it may be necessary to close the proxy.\n* This will stop the proxy from accepting new connections.\n\n```js\nvar proxy = new httpProxy.createProxyServer({\n  target: {\n    host: 'localhost',\n    port: 1337\n  }\n});\n\nproxy.close();\n```\n\n**[Back to top](#table-of-contents)**\n\n### Miscellaneous\n\nIf you want to handle your own response after receiving the `proxyRes`, you can do\nso with `selfHandleResponse`. As you can see below, if you use this option, you\nare able to intercept and read the `proxyRes` but you must also make sure to\nreply to the `res` itself otherwise the original client will never receive any\ndata.\n\n### Modify response\n\n```js\n\n    var option = {\n      target: target,\n      selfHandleResponse : true\n    };\n    proxy.on('proxyRes', function (proxyRes, req, res) {\n        var body = [];\n        proxyRes.on('data', function (chunk) {\n            body.push(chunk);\n        });\n        proxyRes.on('end', function () {\n            body = Buffer.concat(body).toString();\n            console.log(\"res from proxied server:\", body);\n            res.end(\"my response to cli\");\n        });\n    });\n    proxy.web(req, res, option);\n\n\n```\n\n#### ProxyTable API\n\nA proxy table API is available through this add-on [module](https:\u002F\u002Fgithub.com\u002Fdonasaur\u002Fhttp-proxy-rules), which lets you define a set of rules to translate matching routes to target routes that the reverse proxy will talk to.\n\n#### Test\n\n```\n$ npm test\n```\n\n#### Logo\n\nLogo created by [Diego Pasquali](http:\u002F\u002Fdribbble.com\u002Fdiegopq)\n\n**[Back to top](#table-of-contents)**\n\n### Contributing and Issues\n\n* Read carefully our [Code Of Conduct](https:\u002F\u002Fgithub.com\u002Fhttp-party\u002Fnode-http-proxy\u002Fblob\u002Fmaster\u002FCODE_OF_CONDUCT.md)\n* Search on Google\u002FGithub\n* If you can't find anything, open an issue\n* If you feel comfortable about fixing the issue, fork the repo\n* Commit to your local branch (which must be different from `master`)\n* Submit your Pull Request (be sure to include tests and update documentation)\n\n**[Back to top](#table-of-contents)**\n\n### License\n\n>The MIT License (MIT)\n>\n>Copyright (c) 2010 - 2016 Charlie Robbins, Jarrett Cruger & the Contributors.\n>\n>Permission is hereby granted, free of charge, to any person obtaining a copy\n>of this software and associated documentation files (the \"Software\"), to deal\n>in the Software without restriction, including without limitation the rights\n>to use, copy, modify, merge, publish, distribute, sublicense, and\u002For sell\n>copies of the Software, and to permit persons to whom the Software is\n>furnished to do so, subject to the following conditions:\n>\n>The above copyright notice and this permission notice shall be included in\n>all copies or substantial portions of the Software.\n>\n>THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n>THE SOFTWARE.\n","`node-http-proxy` 是一个为 Node.js 设计的全功能 HTTP 代理库，支持 WebSocket。其核心功能包括创建可编程的 HTTP 代理服务器，并且可以实现反向代理和负载均衡等组件。该库允许开发者通过简单的 API 调用来转发请求到目标服务器，同时提供了对请求头重写、响应修改等功能的支持。适用于需要灵活控制网络流量分配与处理的各种场景，如开发测试环境下的模拟服务、生产环境中的流量管理以及构建复杂的微服务架构等。","2026-06-11 02:53:48","top_language"]