使用node.js为scgi编写ClientRequest
我想编写一个 scgi 版本的 http.request< /code>
,它返回
http.ClientRequest
。当然,除了 scgi 之外,我会编写等效的内容。
我想知道我应该扩展什么或者应该从哪里开始。我可以处理 scgi 部分,我只是想知道如何实现它,使其或多或少成为 http.request
的替代品。换句话说,用同样的方法。
I want to write an scgi version of http.request
, which returns an instance of http.ClientRequest
. Of course, I'd write the equivalent but for scgi.
I'm wondering what I should go about extending or where I should begin. I can handle the scgi part, I'm just wondering how to implement it such that it's more or less a drop in replacement for http.request
. In other words, used the same way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只需从 节点文档 获取 API 规范并重新实现它。
I would just take the API specification from the node documentation and reimplement it.