Skip to main content
Module

x/udibo_react_app/server.tsx

A React Framework for Deno that makes it easy to create highly interactive apps that have server side rendering with file based routing for both your UI and API.
Go to Latest
import * as udiboReactApp from "https://deno.land/x/udibo_react_app@0.4.0/server.tsx";

Variables

For internal use only. This router renders the application on get requests. It is used for all route components that do not have route middleware.

Functions

Wraps an API router with an error handler that responds with the error in json format.

Creates a Udibo React App.

Creates an oak router for your application.

This middleware ensures all errors in the route are HttpErrors. If an error isn't an HttpError, a new HttpError is created with it as the cause. If a boundary is specified, it will add the boundary to the HttpError. If an AppErrorBoundary exists with a matching boundary, it will be used to handle the error. If a boundary is not specified, the first AppErrorBoundary without a boundary specified will handle the error. If a boundary is specified, but no AppErrorBoundary exists with a matching boundary, the error will go unhandled.

This function tells the dev server when the app server is listening. If you are not using serve, you must add an event listener to your app that will call this function once it's listening. If this function is not called, the browser will not automatically refresh when the app server is restarted. If called before the app server is listening, the browser will refresh before the app server is ready to handle the request. This function will not do anything if the app is not running in development mode.

The default renderToReadableStream function. If you'd like to transform the stream before it is returned to the client, you can wrap this function with a custom renderToReadableStream function.

Creates and serves a Udibo React App.