文件名称:http-parser-js:用于节点的纯JS HTTP解析器
文件大小:221KB
文件格式:ZIP
更新时间:2024-06-01 02:52:51
JavaScript
HTTP解析器 该库解析HTTP协议以获取请求和响应。 它的创建是为了替换http_parser.c因为从JS调用C ++函数在V8中确实很慢。 但是,现在在处理不满足严格的HTTP解析规则的旧服务时,具有更灵活/更容忍的HTTP解析器非常有用。 它打包为独立的npm模块。 要在节点中使用,请使用monkeypatch HTTPParser。 // Monkey patch before you require http for the first time. process . binding ( 'http_parser' ) . HTTPParser = require ( 'http-parser-js' ) . HTTPParser ; var http = require ( 'http' ) ; // ... 测验 只需运行npm test 。 测试是从node和msce