Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/likui628/vue3-realworld-example-app
real world example app
https://github.com/likui628/vue3-realworld-example-app
nuxtjs pinia realworld typescript vue vue-router vue-test-utils vue3
Last synced: 20 days ago
JSON representation
real world example app
- Host: GitHub
- URL: https://github.com/likui628/vue3-realworld-example-app
- Owner: likui628
- License: mit
- Created: 2021-09-19T13:13:13.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T05:53:46.000Z (7 months ago)
- Last Synced: 2024-10-14T19:44:50.449Z (about 1 month ago)
- Topics: nuxtjs, pinia, realworld, typescript, vue, vue-router, vue-test-utils, vue3
- Language: TypeScript
- Homepage: https://blissful-bohr-ebf9d4.netlify.app/
- Size: 803 KB
- Stars: 19
- Watchers: 3
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ![RealWorld Example App](logo.png)
![test](https://github.com/likui628/vue3-realworld-example-app/actions/workflows/test.yml/badge.svg)
![codeql](https://github.com/likui628/vue3-realworld-example-app/actions/workflows/codeql-analysis.yml/badge.svg)
[![Netlify Status](https://api.netlify.com/api/v1/badges/66701edf-aa53-4fa7-bbb1-81ea5e8ee771/deploy-status)](https://blissful-bohr-ebf9d4.netlify.app/)Project demo is available at https://blissful-bohr-ebf9d4.netlify.app/
# What works?
- [x] [Vite](https://github.com/vitejs/vite)
- [x] [Composition API](https://composition-api.vuejs.org/)
- [x] [SFC \ sugar](https://v3.vuejs.org/api/sfc-script-setup.html)
- [x] [Suspense](https://v3.vuejs.org/guide/component-dynamic-async.html#using-with-suspense) (Experimental)
- [x] [Vue router](https://next.router.vuejs.org/)
- [x] [Pinia](https://pinia.vuejs.org/)
- [x] [TypeScript](https://www.typescriptlang.org/)
- [x] [Vue Test Utils for Vue 3](https://next.vue-test-utils.vuejs.org/)
- [ ] E2E test ([Cypress](https://docs.cypress.io))# Getting started
```shell script
yarn install# Development
yarn dev# Build dist
yarn build# Run unit tests
yarn test
```# References
- [mutoe/vue3-realworld-example-app](https://github.com/mutoe/vue3-realworld-example-app)
- [vue test utils next](https://next.vue-test-utils.vuejs.org/guide/)
- [gothinkster/vue-realworld-example-app](https://github.com/gothinkster/vue-realworld-example-app)