-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
t-toolingIssues with this label are in the ownership of the tooling team.Issues with this label are in the ownership of the tooling team.
Description
Responses acquired through the Node.JS bindings are missing the content-length response header
import { Impit } from 'impit';
const client = new Impit();
const impitResponse = await client.fetch('https://crawlee.dev');
console.log(impitResponse.headers.get('content-length'));
// prints null
const nativeResponse = await fetch('https://crawlee.dev');
console.log(nativeResponse.headers.get('content-length'));
// prints a number > 10000Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
t-toolingIssues with this label are in the ownership of the tooling team.Issues with this label are in the ownership of the tooling team.