Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 706489d

Browse files
committed
final
1 parent 29a693b commit 706489d

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

docs/vue/index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@
1717

1818
**Fastify DX for Vue** is a renderer adapter for [**fastify-vite**](https://github.com/fastify/fastify-vite).
1919

20+
It lets you run and SSR (server-side render) **Vue 3 applications built with Vite** on [Fastify](https://fastify.io/), with a minimal and transparent **server-first approach** — everything starts with `server.js`, your actual Fastify server).
21+
22+
It also provides a set of built-in utilities for ease of development and managing a universal JavaScript context (SSR to CSR), very much like **Nuxt.js**, **Next.js** and **Remix**. Both **Fastify DX for Vue** and [**Fastify DX for React**](https://github.com/fastify/fastify-dx/tree/main/packages/fastify-dx-react) implement the [URMA specification](https://github.com/fastify/fastify-dx/blob/main/URMA.md) and have almost the same API, with only minimal differences due to specific framework APIs or idioms.
23+
2024
It is a **fast**, **lightweight** alternative to Nuxt.js packed with **Developer Experience** features.
2125

2226
It has an extremely small core (~1k LOC total) and is built on top of [Fastify](https://github.com/fastify/fastify), [Vite](https://vitejs.dev/) and [Vue Router](https://router.vuejs.org/).
2327

24-
[**See the release notes for the 0.0.1 alpha release**](https://github.com/fastify/fastify-dx/releases/tag/v0.0.1).
28+
[**See the release notes for the 0.0.1 alpha release**](https://github.com/fastify/fastify-dx/releases/tag/vue-v0.0.1).
2529

2630
> At this stage this project is mostly a [**one-man show**](https://github.com/sponsors/galvez), who's devoting all his free time to its completion. Contributions are extremely welcome, as well as bug reports for any issues you may find.
2731

packages/fastify-dx-vue/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717

1818
**Fastify DX for Vue** is a renderer adapter for [**fastify-vite**](https://github.com/fastify/fastify-vite).
1919

20+
It lets you run and SSR (server-side render) **Vue 3 applications built with Vite** on [Fastify](https://fastify.io/), with a minimal and transparent **server-first approach** — everything starts with `server.js`, your actual Fastify server).
21+
22+
It also provides a set of built-in utilities for ease of development and managing a universal JavaScript context (SSR to CSR), very much like **Nuxt.js**, **Next.js** and **Remix**. Both **Fastify DX for Vue** and [**Fastify DX for React**](https://github.com/fastify/fastify-dx/tree/main/packages/fastify-dx-react) implement the [URMA specification](https://github.com/fastify/fastify-dx/blob/main/URMA.md) and have almost the same API, with only minimal differences due to specific framework APIs or idioms.
23+
2024
It is a **fast**, **lightweight** alternative to Nuxt.js packed with **Developer Experience** features.
2125

2226
It has an extremely small core (~1k LOC total) and is built on top of [Fastify](https://github.com/fastify/fastify), [Vite](https://vitejs.dev/) and [Vue Router](https://router.vuejs.org/).

packages/fastify-dx-vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "module",
66
"main": "index.js",
77
"name": "fastify-dx-vue",
8-
"version": "0.0.1-pre",
8+
"version": "0.0.1",
99
"files": [
1010
"virtual/create.js",
1111
"virtual/root.vue",

starters/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"lint": "eslint . --ext .js,.jsx --fix"
1111
},
1212
"dependencies": {
13-
"fastify-dx-vue": "0.0.1-pre",
13+
"fastify-dx-vue": "^0.0.1",
1414
"fastify-vite": "^3.0.0-beta.23",
1515
"ky-universal": "^0.10.1",
1616
"@vueuse/core": "^8.7.4"

0 commit comments

Comments
 (0)