A mini calculator project built in React that is able to perform simple calculations, incuding addition, subtraction and division, both with whole numbers and decimals.
In order to run this project locally, the following must be installed on your machine:
- Node.js v19.6.1 -Node Package Manager (npm)
- git (and a Github account)
- Fork this repository.
- Via your terminal, navigate to your desired directory or create a new directory using
mkdir <project-name>
. - Clone your forked version of the repository to your local machine using the command
git clone <repo-url>
. - Naviagte into your new directory using
cd <project-name>
and open it with your chosen software, e.g. using the commandcode .
to open it in VSCode. - In your terminal, run
npm install
to install all dependencies. - Then run
npm start
to open the app on your local server.
Happy hacking!