Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/levchak0910/vue3-ssr-realworld-example-app
Vue3 Realworld app with SSR
https://github.com/levchak0910/vue3-ssr-realworld-example-app
composition-api realworld ssr typescript vite vue3
Last synced: about 7 hours ago
JSON representation
Vue3 Realworld app with SSR
- Host: GitHub
- URL: https://github.com/levchak0910/vue3-ssr-realworld-example-app
- Owner: levchak0910
- License: mit
- Created: 2020-11-11T18:22:43.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-14T08:34:21.000Z (about 2 years ago)
- Last Synced: 2024-11-01T06:51:33.335Z (7 days ago)
- Topics: composition-api, realworld, ssr, typescript, vite, vue3
- Language: Vue
- Homepage:
- Size: 3.41 MB
- Stars: 42
- Watchers: 2
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-vue-3 - vue3-ssr-realworld-example-app - [Realworld](https://github.com/gothinkster/realworld) app implementation using Vue 3 with SSR (Examples)
README
# Vue 3 Realword app with Server Side Sendering (SSR)
This is an experiment with a try to clone the [original repo](https://github.com/mutoe/vue3-realworld-example-app) and add SSR using latest [Vite2](https://github.com/vitejs/vite) features
# What works?
- [x] [Vite](https://github.com/vitejs/vite)
- [x] [Composition API](https://composition-api.vuejs.org/)
- [x] [Suspense](https://v3.vuejs.org/guide/component-dynamic-async.html#using-with-suspense)
- [x] [TypeScript](https://www.typescriptlang.org/)
- [x] [ESLint](https://eslint.vuejs.org/)
- [x] [Vue router](https://next.router.vuejs.org/)
- [x] [Harlem](https://github.com/andrewcourtice/harlem)
- [x] Vetur Tools: [VTI](https://vuejs.github.io/vetur/guide/vti.html) and [Interpolation](https://vuejs.github.io/vetur/guide/interpolation.html)
- [x] [SSR](https://v3.vuejs.org/guide/ssr/introduction.html) with [Vite2 HMR](https://vitejs.dev/guide/ssr.html)## Getting started
```shell script
git clone https://github.com/levchak0910/vue3-ssr-realworld-example-app.git
cd vue3-ssr-realworld-example-app
yarn install
yarn build
yarn serve
```### For development
```shell script
yarn dev
```### Test performance
```shell script
yarn perf
```## Acknowledges
- [@mutoe](https://github.com/mutoe) and [contributors](https://github.com/mutoe/vue3-realworld-example-app#contributors) - for original repo
- [@andrewcourtice](https://github.com/andrewcourtice) - for [state manager](https://github.com/andrewcourtice/harlem) with [ssr support](https://github.com/andrewcourtice/harlem/blob/main/plugins/ssr)
- [@tbgse](https://github.com/tbgse) - for [example](https://github.com/tbgse/vue3-vite-ssr-example) how to use vite for creating ssr bundles
- [@yyx990803](https://github.com/yyx990803) - for another [example](https://github.com/vitejs/vite/tree/main/packages/playground/ssr-vue) how to use vite2 for creating ssr apps## Vue related implementations of the Realworld app
[gothinkster/vue-realworld-example-app](https://github.com/gothinkster/vue-realworld-example-app) - vue2, js
[AlexBrohshtut/vue-ts-realworld-app](https://github.com/AlexBrohshtut/vue-ts-realworld-app) - vue2, ts, class-component
[devJang/nuxt-realworld](https://github.com/devJang/nuxt-realworld) - nuxt, ts, composition api
[mutoe/vue3-realworld-example-app](https://github.com/mutoe/vue3-realworld-example-app) - vue3, vite, ts, composition api