npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@gr2m/http-interceptor

v1.0.0

Published

Intercept and mock outgoing http/https requests

Downloads

5

Readme

@gr2m/http-interceptor

Test

Intercept and mock outgoing http/https requests

Install

npm install @gr2m/http-interceptor

Usage

import httpInterceptor from "@gr2m/http-interceptor";

httpInterceptor.start();
httpInterceptor.on("connect", (socket, options, bypass) => {
  // call bypass() to continue the unintercepted request
  if (options.host === "db.example.com") return bypass();
});

httpInterceptor.on("request", (request, response) => {
  response.end("Hello World!");
});

API

httpInterceptor is a singleton API.

httpInterceptor.start()

Hooks into the request life cycle and emits connect events for each request that connects to a server as well as request events for all intercepted requests.

httpInterceptor.stop()

Stops intercepting. No connect or request events will be emitted.

httpInterceptor.addListener(event, listener)

connect event

The listener callback is called with 3 arguments

  • socket: the intercepted net or TLS socket
  • options: socket options: {port, /* host, localAddress, localPort, family, allowHalfOpen */}
  • bypass: a function to call to continue the unintercepted connection

request event

The listener callback is called with 2 arguments

  • request: Http.IncomingMessage
  • response: Http.ServerResponse

It's the same arguments as e.g. http.createServer(listener) receives.

httpInterceptor.removeListener(event, listener)

Remove an event listener.

httpInterceptor.removeAllListeners(event)

Removes all event listeners for the given event. Or when called without the event argument, remove all listeners for all events.

How it works

@gr2m/http-interceptor is using @gr2m/net-interceptor to intercept TCP/TLS connections, and to permit to bypass the interception.

@gr2m/http-interceptor also hooks into http.ClientRequest.prototype.onSocket which is called in the http.ClientRequest constructor. Each time http.ClientRequest is instantiated with a socket, we check if the socket is intercepted and if so, emit the request event with a request/response pair for mocking.

Contributing

See CONTRIBUTING.md

Credits

@gr2m/http-interceptor is built upon code and concepts from moll/node-mitm by Andri Möll. Monday Calendar supported that engineering work.

Gregor Martynus removed all http(s)-related code and made its focus on intercepting connections that use the lower-level net and tls modules.

License

LGPL