Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aoede3/taujs-server
Fastify Streaming SSR React Plugin for integration with taujs [ τjs ] template
https://github.com/aoede3/taujs-server
fastify hydration react streaming tsx typescript vite
Last synced: about 1 month ago
JSON representation
Fastify Streaming SSR React Plugin for integration with taujs [ τjs ] template
- Host: GitHub
- URL: https://github.com/aoede3/taujs-server
- Owner: aoede3
- License: mit
- Created: 2024-09-04T11:57:37.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-23T19:25:09.000Z (about 2 months ago)
- Last Synced: 2024-09-29T10:20:56.738Z (about 2 months ago)
- Topics: fastify, hydration, react, streaming, tsx, typescript, vite
- Language: TypeScript
- Homepage:
- Size: 368 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# @taujs/server
`npm install @taujs/server`
`yarn add @taujs/server`
`pnpm add @taujs/server`
## Streaming React SSR & Hydration
Fastify Plugin for integration with taujs [ τjs ] template https://github.com/aoede3/taujs
- Production: Fastify, React
- Development: Fastify, React, tsx, ViteTypeScript / ESM-only focus
## τjs - Developer eXperience
Integrated ViteDevServer HMR + Vite Runtime API run alongside tsx (TS eXecute) providing fast responsive dev reload times for both backend / frontend
- Fastify https://fastify.dev/
- React https://reactjs.org/
- tsx https://tsx.is/
- Vite https://vitejs.dev/guide/ssr#building-for-production- ViteDevServer HMR https://vitejs.dev/guide/ssr#setting-up-the-dev-server
- Vite Runtime API https://vitejs.dev/guide/api-vite-runtime
- ESBuild https://esbuild.github.io/
- Rollup https://rollupjs.org/
- ESM https://nodejs.org/api/esm.html## Development / CI
`npm install --legacy-peer-deps`
## Usage
### Fastify
https://github.com/aoede3/taujs/blob/main/src/server/index.ts
Not utilising taujs [ τjs ] template? Add in your own `alias` object for your own particular setup e.g. `alias: { object }`
### React 'entry-client.tsx'
https://github.com/aoede3/taujs/blob/main/src/client/entry-client.tsx
### React 'entry-server.tsx'
Extended pipe object with callbacks to @taujs/server enabling additional manipulation of HEAD content from client code
https://github.com/aoede3/taujs/blob/main/src/client/entry-server.tsx
### index.html
https://github.com/aoede3/taujs/blob/main/src/client/index.html
### client.d.ts
https://github.com/aoede3/taujs/blob/main/src/client/client.d.ts
### 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 to provide data for streaming/hydration
3. Fastify serving API calls via HTTP in the more traditional sense of client/serverIn 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 architectureIn 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.
https://github.com/aoede3/taujs/blob/main/src/shared/routes/Routes.ts
### Service Registry
In supporting internal calls via τjs a registry of available services and methods provides the linkage to your own architectural setup and developmental patterns
https://github.com/aoede3/taujs/blob/main/src/server/services/ServiceRegistry.ts
https://github.com/aoede3/taujs/blob/main/src/server/services/ServiceExample.ts