This repository shall contain files for audience predictor
- To clone and run this repository you'll need
- From your command line:
# Clone this repository
git clone [email protected]:sandeep82945/audience-predictor.git
# Go into the repository
cd audience-predictor
# Install dependencies
npm install
# Run the app
npm start
## Modules explanation
- `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` - A web page to render. This is the app's **renderer process**.
You can learn more about each of these components within the [Quick Start Guide](http://electron.atom.io/docs/tutorial/quick-start).
Learn more about Electron and its API in the documentation.
For more example apps, see the list of boilerplates created by the awesome electron community.