You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Node version: v18 and newer
typed-rest-client version: Latest
Issue Description
I'm eager to leverage typed-rest-client within my Remix application. However, I believe its current reliance on http and https limits its potential for certain advanced features.
These features can be more effectively managed with undici.
I'm considering forking the repository to implement this transition. I'd appreciate your insights on the feasibility and potential implications of such a change.
The text was updated successfully, but these errors were encountered:
// Allows retries only on Read operations (since writes may not be idempotent)
allowRetries?: boolean;
maxRetries?: number;
Also note that the main goal of the typed-rest-client package is to provide RESTful request-response wrappers, so it wasn't designed for 'fire-and-forget' (am I right that this is something undici's Dispatcher do?) use cases initially
Environment
Node version: v18 and newer
typed-rest-client version: Latest
Issue Description
I'm eager to leverage
typed-rest-client
within my Remix application. However, I believe its current reliance on http and https limits its potential for certain advanced features.Specifically, I'm interested in incorporating:
These features can be more effectively managed with undici.
I'm considering forking the repository to implement this transition. I'd appreciate your insights on the feasibility and potential implications of such a change.
The text was updated successfully, but these errors were encountered: