Socket
Socket
Sign inDemoInstall

@types/http-proxy

Package Overview
Dependencies
2
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/http-proxy

TypeScript definitions for node-http-proxy


Version published
Weekly downloads
11M
decreased by-0.96%
Maintainers
1
Install size
1.62 MB
Created
Weekly downloads
 

Package description

What is @types/http-proxy?

The @types/http-proxy package provides TypeScript type definitions for the http-proxy library, which is a full-featured HTTP proxy for node.js. This package allows TypeScript developers to use http-proxy in their projects with the benefits of type checking and IntelliSense in their code editors. It does not provide proxy functionality by itself but adds type definitions for easier development with TypeScript.

What are @types/http-proxy's main functionalities?

Creating an HTTP Proxy Server

This code sample demonstrates how to create a basic HTTP proxy server that forwards incoming requests to 'http://example.com'. It showcases the use of the 'createProxyServer' method to create a proxy instance and the 'web' method to proxy HTTP requests.

import * as http from 'http';
import * as httpProxy from 'http-proxy';

const proxy = httpProxy.createProxyServer({});
const server = http.createServer(function(req, res) {
  proxy.web(req, res, { target: 'http://example.com' });
});

server.listen(8000);

Listening for Proxy Events

This code sample shows how to listen for errors on the proxy server. When an error occurs, it sends a 500 response to the client with a message indicating that something went wrong. This is useful for handling and logging errors.

proxy.on('error', function (err, req, res) {
  res.writeHead(500, {
    'Content-Type': 'text/plain'
  });
  res.end('Something went wrong.');
});

Other packages similar to @types/http-proxy

Readme

Source

Installation

npm install --save @types/http-proxy

Summary

This package contains type definitions for node-http-proxy (https://github.com/nodejitsu/node-http-proxy).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/http-proxy.

Additional Details

  • Last updated: Tue, 03 May 2022 17:01:38 GMT
  • Dependencies: @types/node
  • Global values: none

Credits

These definitions were written by Maxime LUCE, Florian Oellerich, Daniel Schmidt, Jordan Abreu, and Samuel Bodin.

FAQs

Last updated on 03 May 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc