https://github.com/dotenorio/electron-ipc-example
A ipcMain & ipcRenderer Electron example application
https://github.com/dotenorio/electron-ipc-example
electron example ipc ipcmain ipcrenderer
Last synced: 11 months ago
JSON representation
A ipcMain & ipcRenderer Electron example application
- Host: GitHub
- URL: https://github.com/dotenorio/electron-ipc-example
- Owner: dotenorio
- License: cc0-1.0
- Created: 2018-09-03T01:01:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-10T18:26:58.000Z (about 3 years ago)
- Last Synced: 2023-06-05T21:15:37.160Z (over 2 years ago)
- Topics: electron, example, ipc, ipcmain, ipcrenderer
- Language: JavaScript
- Size: 448 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# electron-ipc-start
**Clone and run for a quick way to see Electron ipcMain and ipcRenderer in action.**
You can learn more about ipc within the:
- [ipcMain](https://electronjs.org/docs/api/ipc-main)
- [ipcRenderer](https://electronjs.org/docs/api/ipc-renderer)
_This project is based in [electron/electron-quick-start](https://github.com/electron/electron-quick-start)_
## To Use
To clone and run this repository you'll need [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) installed on your computer. From your command line:
```bash
# Clone this repository
git clone https://github.com/dotenorio/electron-ipc-example
# Go into the repository
cd electron-ipc-example
# Install dependencies
npm install
# Run the app
npm start
```
Note: If you're using Linux Bash for Windows, [see this guide](https://www.howtogeek.com/261575/how-to-run-graphical-linux-desktop-applications-from-windows-10s-bash-shell/) or use `node` from the command prompt.
## License
[CC0 1.0 (Public Domain)](LICENSE.md)