Socket
Socket
Sign inDemoInstall

http-parser-js

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

http-parser-js

A pure JS HTTP parser for node.


Version published
Maintainers
1
Created

What is http-parser-js?

The http-parser-js npm package is a pure JavaScript implementation of the HTTP parsing component of Node.js. It can be used as a drop-in replacement for the built-in http parser in Node.js, providing a way to parse HTTP messages (requests and responses) without relying on the native parser. This can be useful in environments where the native parser is not available or when a different parsing behavior is desired.

What are http-parser-js's main functionalities?

Parsing HTTP Requests

This code sample demonstrates how to use http-parser-js to parse an HTTP request. The parser object is created with the type HTTPParser.REQUEST, and callback functions are assigned to handle headers, body, and the completion of the message.

const httpParser = require('http-parser-js').HTTPParser;
const parser = new httpParser(httpParser.REQUEST);

parser[httpParser.kOnHeadersComplete] = function(headers, url) {
  // Use headers and url
};

parser[httpParser.kOnBody] = function(body) {
  // Use body
};

parser[httpParser.kOnMessageComplete] = function() {
  // Message is complete
};

// Simulate receiving data
const data = Buffer.from('GET / HTTP/1.1\r\nHost: example.com\r\n\r\n');
parser.execute(data);

Parsing HTTP Responses

This code sample shows how to parse an HTTP response using http-parser-js. The parser object is created with the type HTTPParser.RESPONSE, and callback functions are set up to process headers, body, and the end of the message.

const httpParser = require('http-parser-js').HTTPParser;
const parser = new httpParser(httpParser.RESPONSE);

parser[httpParser.kOnHeadersComplete] = function(headers, statusCode) {
  // Use headers and statusCode
};

parser[httpParser.kOnBody] = function(body) {
  // Use body
};

parser[httpParser.kOnMessageComplete] = function() {
  // Message is complete
};

// Simulate receiving data
const data = Buffer.from('HTTP/1.1 200 OK\r\nContent-Type: text/plain\r\n\r\nHello World');
parser.execute(data);

Other packages similar to http-parser-js

Keywords

FAQs

Package last updated on 17 Apr 2014

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc