This template should help get you started developing with Vue 3 in Vite.
- Bun Javascript runtime
- Vue JavaScript framework
- Cucumber for BDD testing
- Cypress for testing framework
- ESLint for code linting
- Prettier for code formatting
We are using Pointhub App Components for designin UI & UX https://dev.pointhub.net/library/papp/
We are using Bun as a drop-in replacement for Node.js
We still need to install Node.js because Cypress requires Node.js in order to install. Follow the instructions on https://nodejs.org/en/download/package-manager to download and install Node.js
Install Bun a JavaScript runtime
Linux / MacOS
curl -fsSL https://bun.sh/install | bash
Windows
powershell -c "irm bun.sh/install.ps1 | iex"
bun install --frozen-lock
You can skip this step, if you already have cypress on your system
./node_modules/.bin/cypress install
bun run dev
bun run build
Run Unit Tests with Vitest
bun run test:unit
Run End-to-End Tests with Cypress
bun run test:e2e:dev
This runs the end-to-end tests against the Vite development server. It is much faster than the production build.
But it's still recommended to test the production build with test:e2e
before deploying (e.g. in CI environments):
bun run build
bun run test:e2e
Lint with ESLint
bun run lint