Electron is GitHub’s cross platform desktop application development tool powered by Nodejs , CSS and HTML.
Electron Forge
What is Electron forge ? Electron Forge is a programmer’s tools to help create , build electron application quickly as possible.
First up all you need to Install Nodejs and then install electron forge from terminal
npm install create-electron-app -g
Now you are ready to use the tools.
Basic Electron Project Setup
Let’s create a project with basic structure which includes
- index.css
- index.html
- index.css
- package.json
- nodemodules
open your terminal and fire up
npm create-electron-app myapp
It will take some time to generate files and you are ready to first run npm start
For more information and guide have a look at Official Site

How to capture data in Angular form using `ngModel` and `FormsModule` ?
How to capture data from a Angular form using ngModel

How to add validation rule to Angular Reactive form using form Builder
How to add validation rules to angular reactive form using form-Builder

How to handle exceptions in Angular service
How to create http service in angular for posting data to the server