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
Allow Station Modules to make HTTP requests (GET, POST, etc.) Ideally, we want to reuse Deno's implementation of the Fetch API from Web APIs.
Fetch API depends on Web Streams, which is tricky.
As a short-term shortcut, we can implement a subset of Fetch features ourselves, following the Fetch API spec as close as possible, with the intention to replace this limited implementation with a proper one from Deno at some point in the future. (Open a follow-up GH issue for that!)
It would be great to have the same Streams API for both HTTP and libp2p; see #9.
JavaScript APIs
Automated tests
Documentation for module builders
The text was updated successfully, but these errors were encountered:
Allow Station Modules to make HTTP requests (GET, POST, etc.) Ideally, we want to reuse Deno's implementation of the Fetch API from Web APIs.
Fetch API depends on Web Streams, which is tricky.As a short-term shortcut, we can implement a subset of Fetch features ourselves, following the Fetch API spec as close as possible, with the intention to replace this limited implementation with a proper one from Deno at some point in the future. (Open a follow-up GH issue for that!)It would be great to have the same Streams API for both HTTP and libp2p; see #9.The text was updated successfully, but these errors were encountered: