Skip to content
/ taujs Public

taujs [ τjs ] Universal Fastify, React 18 - CSR, SSR, Streaming SSR, Template

License

Notifications You must be signed in to change notification settings

aoede3/taujs

Repository files navigation

taujs | τjs

taujs [ τjs ] template

τjs is in development. Expect some breaking changes on the road towards a stable v1 release. Some features may or may not be missing!

Example use of @taujs/server Fastify plugin. Simplified CSR, SSR, Streaming SSR, and Hydration, with 'fast' developer experience

CSR, SSR, Streaming SSR, and Hydration. React 18.

  • Production: Fastify, React
  • Development: Fastify, React, Vite, tsx
  • TypeScript-first
  • ESM-only focus

Supports rendering modes:

  • Client-side rendering (CSR)
  • Server-side rendering (SSR)
  • Streaming SSR

τjs - Developer eXperience

See @taujs/server Fastify Plugin https://github.com/aoede3/taujs-server

Integrated ViteDevServer HMR + Vite Runtime API run alongside tsx (TS eXecute) providing fast responsive dev reload times for both backend / frontend

Development

yarn to install

yarn dev to start universal development server

yarn build to build for production

yarn start to start production

Example developmental URL as per routes.ts:

http://[::1]:5173
http://[::1]:5173/first
http://[::1]:5173/first/second

Usage

Structure

Opinionated folder structure seperating each facet:

src
  client
  server
  shared

client: React; entry-client + entry-server

server: Fastify + τjs plugin; service registry / services

shared: routes.ts τjs routing file; any shared files, types, etc.

Beyond this scope each area is open to be built around whatever architectural and or design patterns one would want to employ.

Routes

Integral to τjs is its internal routing:

  1. Fastify serving index.html to client browser for client routing
  2. Internal service calls to API prior to 'render' to provide data for render/hydration
  3. Fastify API calls via HTTP in the more traditional sense of client/server

In ensuring a particular 'route' receives data for hydration there are two options:

  1. An HTTP call elsewhere syntactically not unlike 'fetch' providing params to a 'fetch' call
  2. Internally calling a service which in turn will make 'call' to return data as per your architecture

In supporting Option 2. there is a registry of services. More detail in 'Service Registry'.

Each routes 'path' is a simple URL regex as per below examples with choice of render.

https://github.com/aoede3/taujs/blob/main/src/shared/routes/Routes.ts

Service Registry

τjs' registry of available services and methods provides the linkage between the SSR Streaming routes and your own Fastify architectural setup and developmental patterns

https://github.com/aoede3/taujs/blob/main/src/server/services/ServiceRegistry.ts

and

https://github.com/aoede3/taujs/blob/main/src/server/services/ServiceExample.ts