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

cloudflare-tcp-fetcher

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cloudflare-tcp-fetcher

A Fetcher implementation using the Cloudflare TCP Sockets API.

0.9.5
latest
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

cloudflare-tcp-fetcher

A Fetcher implementation using the Cloudflare TCP Sockets API.

Getting started

Install the package

npm install cloudflare-tcp-fetcher

Using the fetchUsingTcp function

You can also input the TcpFetcher in the init object to reuse a connection.

import { fetchUsingTcp } from "cloudflare-tcp-fetcher";

export default {
  async fetch(request: Request, env: never, ctx: ExecutionContext): Promise<Response> {
    return fetchUsingTcp("https://google.com", {
      method: "GET"
    });
  }
}

Using the TcpFetcher class

You can re-use the TcpFetcher class until the worker is closed.

Note: you can not use the TcpFetcher instance with fetch because the worker will complain that TcpFetcher is not an instance of Fetcher :/

import { TcpFetcher } from "cloudflare-tcp-fetcher";

export default {
  async fetch(request: Request, env: never, ctx: ExecutionContext): Promise<Response> {
    const fetcher = new TcpFetcher();

    return fetcher.fetch(new Request("https://google.com", {
      method: "GET"
    }));
  }
}

Examples

Using the response body

import { fetchUsingTcp } from "cloudflare-tcp-fetcher";

export default {
  async fetch(request: Request, env: never, ctx: ExecutionContext): Promise<Response> {
    const response = await fetchUsingTcp("https://httpbin.org/delete", {
      method: "DELETE"
    });

    return Response.json({
      result: await response.json()
    });
  }
}

FAQs

Package last updated on 19 Feb 2024

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