Starters


The Throwforward Vite plugin enables integration with endless tools and workflows. Here are a few starter templates to help you get going with Throwforward.

Hono + HTMX

The Hono + HTMX starter template is a minimalistic setup that uses Hono for server-side rendering and HTMX for client-side interactions. This site is built using this setup.

https://github.com/jacob-ebey/throwforward/tree/main/starters/hono

mkdir my-app
cd my-app
npx degit jacob-ebey/throwforward/starters/hono
npm i
npm run dev

React

The React starter template is a bare-bones Remix application.

https://github.com/jacob-ebey/throwforward/tree/main/starters/remix

mkdir my-app
cd my-app
npx degit jacob-ebey/throwforward/starters/remix
npm i
npm run dev

Enhance SSR + HTMX

The HTMX starter template is a very minimalistic setup that uses enhance-ssr for server-side rendering. It also enables client side routing with hx-boost.

https://github.com/jacob-ebey/throwforward/tree/main/starters/htmx

mkdir my-app
cd my-app
npx degit jacob-ebey/throwforward/starters/htmx
npm i
npm run dev