/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/http-recorder/src/effect.ts
25 строк
1 KB
Kit Langton
feat(http-recorder): prepare public beta release (#31018)
06 июн 2026, 06:01
Не верифицирован
06 июн 2026, 06:01
54f4974
Код
Авторство
О чём код?
import { NodeFileSystem } from "@effect/platform-node" import * as Layer from "effect/Layer" import { FetchHttpClient } from "effect/unstable/http" import type * as HttpClient from "effect/unstable/http/HttpClient" import * as CassetteService from "./cassette.js" import { recordingLayer } from "./internal-effect.js" import { make } from "./redactor.js" import type { RecorderOptions } from "./types.js" /** * Provides a fetch-backed `HttpClient` with cassette recording and replay. * * Locally, a missing cassette is recorded from the real service. Existing * cassettes are replayed, and `CI=true` makes a missing cassette fail. */ export const http = (name: string, options: RecorderOptions = {}): Layer.Layer<HttpClient.HttpClient> => recordingLayer(name, { metadata: options.metadata, redactor: make(options.redact), match: options.match, }).pipe( Layer.provide(CassetteService.fileSystem({ directory: options.directory })), Layer.provide(FetchHttpClient.layer), Layer.provide(NodeFileSystem.layer), )