Modern Web Development with Fastify + React

A rat going fast on their skateboard

Doing modern web development can mean different things, for example you can have a very sophisticated interaction with legacy code, or you might be building a "simple" landing page, but with very modern tooling.

It's nice that we can ask us this question, because web development over the years went very far and it's reaching many different devices. If in the past native applications could have an advantage, web applications are more and more shortening the distance, across every platform.

I still find flabbergasting that VSCode can be opened on each GitHub repository by pressing . and the editor will persist all the preferences that are in sync.

Why FastRat (Fastify + React)

JavaScript world changes so quickly that often we ask ourselves if we are learning something new, just because it's trendy or if it's something that we truly believe it's an improvement. I remember when in the early days of React, everyone was reminding to everyone on Twitter that:

It is not a framework!

And I think that it was a good thing, because it fostered composition and build many cool projects around it. So, with the same spirit, here I am composing React with my favourite backend framework which is Fastify.

Fastify is well maintained, has Node contributors among the maintainers and it is used by many companies in production. That's why I consider it a safe bet.

FastRat is not a React metaframework like Next or Remix; it just composes well known library to create a starter kit that can be deployed everywhere Node runs.
While there are other interesting runtime environments (Bun, Deno, ...etc), this starter kit intentionally focuses in getting the best out of Node.

SPA or MPA?

I want to have both in the same project. Why?

I think that it's a very common case to rely on a SPA for a private dashboard, but we might still need some SSR rendered page if for example we are building an e-commerce and our product pages need to be crawled by Google or any other search engine.

FastRat renders the HTML on the first request and then uses client side routing when the interaction happens on the page.

Server side data fetching

With FastRat you can achieve what in NextJS can be done through getServerSideProps.
We are just leveraging what Tanstack Router offers for the purpose, which is the loader function on the route definition.

Check these key points in this sample app's file src/routes/notes/$noteId.tsx

  • the loader executes on server side when the page is requested directly
  • executes on client side when client side routing happens
  • the condition if (import.meta.env.SSR) is used to conditionally access the database only on server
  • server bundle doesn't contain frontend code and vice versa (Vite apparently does that)
  • fetched data can be passed to Tanstack Query initialData for the first render

Points worth mentioning:

  • directives 'use server' and 'use client' are not supported, so you have to be mindful about not importing server only code into the client and vice versa
  • we are not supporting React Server Components

Things might change in the future, but the current solution is reliable and automatically tested on this repository.

SEO

We can then leverage server side data fetching for building pages that need to be crawled by search engines.
react-helmet-async can be used to add any metalink/markup to the <head /> of the page.
The markup in the <head /> will be updated both on SSR and client side routing.

PWA

This starter kit uses vite-plugin-pwa to provide the experience of an offline first web application.
Read more about Progressive Web Apps.

Great Developer Experience

When using NextJS I like that with one command I have both my frontend and backend running and that I can share code between the two and import it in the same way.
This wouldn't have been possible without Vite and Vavite.

When you run pnpm dev all your code is running and changes to code are applied immediately without restarting the server.
This happens because Vavite is using Vite to compile both frontend and backend code.

Fully typed with TypeScript

FastRat uses the modern libraries that allow to type every aspect of your apps:

tRPC

tRPC adapter for Fastify is used for E2E type safety for requests from browser to server.
End points appears in Tanstack Query intellisense and are type checked.

Tanstack Router

Tanstack Router is used both for server side and client side routing.
When using it's link component you'll be guided to the available routes.
It's particularly useful when you start to store more data in URL params and query strings.
FastRat includes router-vite-plugin for file-based routing, the routes are in src/routes/.

Drizzle ORM

Drizzle ORM is a tiny layer on top of SQL (lite in this case).
It handles schema, migrations and queries.

Zod

Everytime that you need to validate an object structure and to infer its type, you can use Zod.
Which is also at the root of the tRPC functionality.

Deployment freedom

This project can run anywhere Docker containers run.
This website automatically deploys to Fly.io leveraging their GitHub action that runs when merge into the main branch.