Skip to content

chulack/SimpleCalculator

Repository files navigation

SimpleCalculator

This is a basic web calcultor that uses a semi mvc set up, any audio used was found online with a licence of open source. The electron application boilerplates is from Electron-Quick-Start.

Here are some imporant files/folders to take note of in this Electron application:

  • package.json - Points to the app's main file and lists its details and dependencies.
  • main.js - Starts the app and creates a browser window to render HTML. This is the app's main process.
  • index.html - Is the main view. renderer process.
  • /front-end - This folder holds all the assets such as the styling, controller, model, etc.

You can learn more about Electron from the Quick Start Guide.

To Use

To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:

# Clone this repository
git clone https://github.com/chulack/SimpleCalculator
# Go into the repository
cd SimpleCalculator
# Install dependencies
npm install
# Run the app
npm start

Note: If you're using Linux Bash for Windows, see this guide or use node from the command prompt.

License

MIT (Open Source)