export const fetchPage = async ({ at, proxy } = {}) => {
Fetches a page and returns both body and status.
Target style API. Preferred for new code.
Network
Source: network/goto.mjs
Target Style
export const fetchPage = async ({ at, proxy } = {}) => {
Fetches a page and returns both body and status.
Target style API. Preferred for new code.
export const readPage = async ({ at, proxy } = {}) => {
Reads only the page body from a URL.
Target style API. Preferred for new code.
Legacy Style