@fetch-impl/playwright
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

@fetch-impl/playwright

User Configurable Fetch Implementation. Playwright adapter, supports fetch in real browser (chromium, firefox, webkit).

Usage

import { chromium } from "playwright";
import { usePlaywright } from "@fetch-impl/playwright";
import fetch from "@fetch-impl/fetcher";

// configure fetch to use playwright
usePlaywright(chromium.launch());

// use fetch as usual
fetch("https://example.com").then(async (res) => {
    console.log(res.status, await res.text());
});

Note: A new context is automatically created and reused for all fetch requests. The browser will not be closed automatically. You should close it manually when you are done with it.

Readme

Keywords

Package Sidebar

Install

npm i @fetch-impl/playwright

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

9.18 kB

Total Files

7

Last publish

Collaborators

  • jacoblincool