This web application replicates the functionality of the Android calculator, providing a user-friendly interface for performing basic arithmetic operations and evaluating mathematical expressions.
- Frontend: Vue.js framework
- Backend: Spring Boot (for Evaluating the result)
- User-friendly interface: The web application closely resembles the Android calculator, providing a familiar environment for users.
- Keyboard input support: Users can efficiently perform calculations using keyboard inputs, allowing for quick calculations.
- Error handling: The application includes error handling mechanisms.
- Enter numerical values and perform arithmetic operations using the buttons on the calculator interface.
- Use the keyboard for efficient calculations by typing the corresponding keys for numbers and operators.
- Press the equal (=) button or the Enter key to evaluate the expression and display the result.
- Clone the repository: git clone
- Navigate to the project directory: cd web-calculator-clone
- Install the necessary dependencies:
- For the frontend: npm install
- For the backend: mvn install
- Start the development server:
- For the frontend: npm run serve
- For the backend: mvn spring-boot:run
- Open your web browser and go to http://localhost:3000 to access the web calculator.