A function that takes no arguments and returns a string of the current URL of the running application on client or server.
For example, in dev-mode by default this would be a string of http://127.0.0.1:8081. In non-development environments you will need to set process.env.ONE_SERVER_URL to your production URL with no trailing /.
One uses Request/Response type objects for API routes, but for some environments doing an instanceof Response can fail, isResponse takes any value and returns true if it is a Response-like object. Useful for API utility functions.
For improving performance of client hydration on the web, you can pass data from the server to the client with requestCache, on native values will always be undefined. Data must be JSON-stringifyable and on native.
Here's an example of a simple useFetch to show how it's useful: