https://github.com/fecony/vue2x
Vue 2 app with vuex and cypress component testing
https://github.com/fecony/vue2x
cypress preline tailwindcss typescript vee-validate vue-router vue2 vuex
Last synced: 3 months ago
JSON representation
Vue 2 app with vuex and cypress component testing
- Host: GitHub
- URL: https://github.com/fecony/vue2x
- Owner: fecony
- Created: 2023-10-15T15:23:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-15T20:44:54.000Z (over 1 year ago)
- Last Synced: 2025-01-08T09:52:18.511Z (5 months ago)
- Topics: cypress, preline, tailwindcss, typescript, vee-validate, vue-router, vue2, vuex
- Language: TypeScript
- Homepage: https://chonky-cats.surge.sh/
- Size: 161 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue2x-app
Vue.js todo app with vuex and cypress tests
Deployed on: [chonky-cats.surge.sh/](https://chonky-cats.surge.sh/)
https://github.com/fecony/vue2x/assets/36774784/dcba0f8c-d9d9-4a6b-91df-550651796306
## Project Setup
Clone the project
```sh
git clone [email protected]:fecony/vue2x.git
```Go to the project directory
```bash
cd vue2x
```> Note: use correct node version. Current version used v20.6.0
Install dependencies
```sh
yarn install
```### Compile and Hot-Reload for Development
```sh
yarn run dev
```### Type-Check, Compile and Minify for Production
```sh
yarn run build
```### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
npm run test:unit
```### Run Component Tests with [Cypress](https://www.cypress.io/)
```sh
yarn run cy:unit
```### Lint with [ESLint](https://eslint.org/)
```sh
yarn run lint
```