A basic desktop application:
main.js- Starts the app and creates a browser window to render HTML.package.json- Points to the app's main file and lists its details and dependencies.
To run this application you'll need Node.js (which comes with npm) installed on your computer. From your command line:
# Verify Node installation
$ node --version && npm --version
# Clone this repository
$ git clone https://github.com/DelegateIt/GatorDesktop.git
# Go into the repository
$ cd GatorDesktop
# Install dependencies
$ npm install
# Run the app
$ npm start