0.0.4 • Published 2 years ago

universify v0.0.4

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

universify

Fastify's DX-oriented CLI for SSR-enabled application development powered by Vite.

Status: experimental, in active development.

npm i universify

Running vanilla Fastify app

Create app.mjs file as follows:

export default (app) => {
  app.get('/', (_, reply) => reply.send('Hello world'))
}

Run with:

npx uni app dev

Running Fastify-Vite app

Create app.mjs file as follows:

import FastifyViteVue from 'fastify-vite-vue'

export const renderer = FastifyViteVue

Create views/index.vue and export path to set a route.

Run with:

npx uni app dev
0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago

0.0.0

2 years ago