Simple calculator application with basic arithmetic opertions. The goal is to get quick started on node js and create a simple hands on application
- Clone the repo SimpleCalculator on your local machine
- Install node.js on your machine, if not installed already.
- Go to the SimpleCalculator folder from your command line (bash, pwsh) and install the below modules
npm install express
npm install http
npm install body-parser
npm install path - Type below command to run the app
npm start - Open http://localhost:3000 in the browser to view the calculator
- You can change the hostname and post in app.js file, if required.