Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atapas/learn-electron
An electron project to build a dashboard application. Using this app you can search any public GitHub user account using the user name.
https://github.com/atapas/learn-electron
electron electron-app
Last synced: 24 days ago
JSON representation
An electron project to build a dashboard application. Using this app you can search any public GitHub user account using the user name.
- Host: GitHub
- URL: https://github.com/atapas/learn-electron
- Owner: atapas
- License: mit
- Created: 2022-11-22T12:46:00.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-28T09:43:18.000Z (about 2 years ago)
- Last Synced: 2024-11-30T04:26:50.086Z (3 months ago)
- Topics: electron, electron-app
- Language: JavaScript
- Homepage: https://tapasadhikary.com
- Size: 73.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# learn-electron
An electron project to build a dashboard application. Using this app you can search any public GitHub user account using the user name.The focus of the app are followings:
- Bootstrap an electron app
- Adding required libraries
- Making the app running with `main.js`
- Understanding preloading
- Build the user interface
- Using API to fetch data
- Basic Styling
- [Integrate Bugfender API](https://bugfender.com/) with the app and start collecting the logs## Setting it up locally
To set it up locally, first `clone` or `fork` this repository and then install the dependencies:```shell
yarn # Or, npm install
```After the sucessfull installation of the dependencies, try this command to run the app.
```shell
yarn start # Or, npm start
```Now, you should see the application running locally.
> Note: If you are using [Bugfender](https://bugfender.com/) with this app, please make sure you get an API key and replace the `` with the actual key in the `render.js` file.