A calculator that is used to forecast the return on a term deposit.
This project serves as a simple hands-on app created using Vanilla Javascript, HTML and CSS.
To get started with this project, follow these simple steps:
- Clone this repository to your local machine
- If you're using Visual Studio Code, you can install the Live Preview extension which provides a local server for the static files. This is required because this project use ES6 module syntax. You will run into issues like CORS, module loading and relative paths if you open the file directly from the browser.
- After installing the extension, right-click on the
index.html
file in the root directory, and you'll see an option toShow Preview
(see screenshot below). Clicking this option will launch a development server and open the HTML file.
If you don't use Visual Studio Code or have issues opening the file, you can checkout a different version of the project on this branch. This branch does not use ES6 module loading. Opening the file should be as easy as opening the index.html
using your favourite browser.
This project was created using test-driven development because I truly care about quality 🤩
- Make sure you have
yarn
install. Follow these instructions if you don't have it. yarn install
in the root directory to install all dependencies.yarn test
to run all the unit tests available.
I hope you find this project enjoyable and educational. Happy calculating!