npm installnpx husky install## linux / macos
npx husky add .husky/commit-msg 'npx --no -- commitlint --edit "$1"'
## windows
npx husky add .husky\commit-msg "npx --no -- commitlint --edit $1"npx commitizen init cz-conventional-changelog --save-dev --save-exactnpm run cmnpm run releasenpm run release -- --first-releasePer effettuare la prima release è necessario che il progetto abbia almeno una commit.
VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:
- Disable the built-in TypeScript Extension
- Run
Extensions: Show Built-in Extensionsfrom VSCode's command palette - Find
TypeScript and JavaScript Language Features, right click and selectDisable (Workspace)
- Run
- Reload the VSCode window by running
Developer: Reload Windowfrom the command palette.
npm run devnpm run buildRun Unit Tests with Vitest
npm run test:unitRun End-to-End Tests with Cypress
npm run build
npm run test:e2e # or `npm run test:e2e:ci` for headless testingLint with ESLint
npm run lint- Vue - Framework di sviluppo interfaccia grafica
- Vue Router - Routing system built-in in Vue
- Vite - Developement server con HRM
- Vitest - Test runner per Unit Test
- Cypress - FrontEnd E2E testing tool
- Pinia - Library di gestione degli stati
- Tailwindcss - CSS Framework
- StackOverflow - La Bibbia