Electron 4
PhotonKit UI components for Electron.js
PhotonKit provides a design pattern for building UI for desktop application using Electron.js. You can find more information on PhotonKit in following URL:- http://photonkit.com/components/ PhotonKit provide some common component like header,footer,sidebar and content. In this demo, “We will learn to use PhotonKit in a demo application developed in Electron.js”. You can download the PhotonKit from […]
Desktop Application Development With Electron
Develop Desktop Application Using HTML CSS and JavaScript This book is all about desktop application development using Electron framework.It covers all the important concept of Electron framework that will help a web developer to create a desktop application. It also shows how we can use HTML,CSS and JavaScript to build a desktop application.It has also […]
Electron Desktop Notification Using Node Notifier
Electron framework does not provide cross platform notification API. We can use HTML5 Web Notification API to create notification.But it can only be used in Mac OS and Linux. Electron for Windows build does not support Web Notification.This concludes We need a cross platform notification solution.We can solve this problem using node-notifier NPM module. […]
Electron Desktop Application Installation
Electron framework provides cross platform desktop application development using JavaScript. In this demo, “We will learn to install electron and setup application development environment”. Electron can be installed as npm package using npm install electron-prebuilt –save-dev command.The following screenshot shows the terminal with electron installation. The project structure contains the index.html,main.js and package.json file and […]