[Vue.js + TypeScript] codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.
This codebase was created to demonstrate a fully fledged fullstack application built with [Vue.JS + TypeScript] including CRUD operations, authentication, routing, pagination, and more.
We've gone to great lengths to adhere to the [Vue.JS + TypeScript] community styleguides & best practices.
For more information on how to this works with other backends, head over to the RealWorld repo.
- Introduction
- Init and Linting setup
- Basic views and routing setup
- Services
- Store configuration
- Components and views
- Composition API + TSX (WIP in a separate branch)
This application is meant to show fully working Vue application, written in TypeScript.
Application was scaffolded using vue-cli
and as for now uses vue-class-component
approach. Version with composition-api
is WIP.
src/layots
- app's layouts - contains layouts of application, now there is only one footer and headersrc/views
- app's views - basically all screens, that user seessrc/components
- reusable components used in viewssrc/router
- contains router logic:routesNames.ts
- dictionary ofRoutesNames
to refer in componentsroutes.ts
- Vue RouterRouterConfig
- map of all application's routesindex.ts
- Router's bootstrap and guards
src/services
- applications's services to access various APIs:realWorldApi/
- this folder contains all the logic required to access RealWorld API:models/
- models related to RealWorld APIRealWorldApiBase.ts
- base client for RealWorld API. Contains error handling logic and authentication checking logicRealWorldApi(Article/Profile/Tags/User).ts
- wrapper for specific API's endpoints
common
- classes not specifically related to any API - ResponseCodes and Pagination
src/store
- Vuex store for applicationmodels/
- models used in storemodules/
- store modulestransformers/
- transformers to convert between API's and store's models
src/utils
- various helper utilities
Clone the app:
git clone https://github.com/AlexBrohshtut/vue-ts-realworld-app
Go to app's directory:
cd vue-ts-realworld-app
Install dependencies:
yarn
And run it!
yarn serve
By default app will run on http://localhost:8080/
gothinkster/vue-realworld-example-app - vue2, js
devJang/nuxt-realworld - nuxt, ts, composition api
mutoe/vue3-realworld-example-app - vue3, vite, ts, composition api