A simple calculator application made to test out Vite.js. This Repo is part of a series of articles and videos on djangsters.de.
You can find the article here.
There are two Teapot Tech Talks, where we go through the code and explain the different parts of the application.
After cloning the repository, run the following command to install the dependencies:
yarn installThen from there you can run the following command to start the development server:
yarn devTo build the application, run the following command:
yarn buildThe application uses StandardJS for linting and Vitest for testing. To run the linter, run the following command:
yarn lintand for testing
yarn testIt comes with Storybook for component development. To run the storybook, run the following command:
yarn storybook