🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

http-string-parser

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

http-string-parser

Parse HTTP Request and Response from String

0.0.6
latest
Version published
Weekly downloads
20K
26.89%
Maintainers
6
Weekly downloads
 
Created

http-string-parser

NPM Version Build Status Dependency Status devDependency Status

Parse HTTP messages (Request and Response) from raw string in Node.JS

Parse HTTP Messages

var parser = require('http-string-parser');

request = parser.parseRequest(requestString);
response = parser.parseResponse(responseString);

console.log(request);
console.log(response);

See more about Request and Response data model.

API Reference

parseRequest(requestString)

parseRequestLine(requestLine)

parseResponse(responseString)

parseStatusLine(statusLine)

parseHeaders(headersLinesArray)

NOTE: Proof of concept, naive HTTP parsing, wheel re-inventation. In future it may be replaced with better parser from Node.JS core's C bindings of NGINX HTTP parser or PEG.js HTTP parser

FAQs

Package last updated on 05 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts