Just a package manager like npm or yarn is required
- Vite as a building tool and server
- TailwindCSS as a front-end css framework
- Jest as a Test Runner and Assertion Library
-
Unzip the package in some empty directory
-
Open the terminal in the same directory you unzip the files and execute one of this commands in a terminal to install the dependencies and start a web server
For DEV MODE preview with yarn:
yarn && yarn dev
For DEV MODE preview with npm:
npm install && npm run dev
For BUILD MODE preview with yarn:
yarn && yarn build && yarn preview
For BUILD MODE preview with npm:
npm install && npm run build && npm run preview
With yarn
yarn test
With npm
npm test