Desktop Application Development in ElectronJS Using Angular

Written by th3n00bc0d3r | Published 2019/09/08
Tech Story Tags: angular | beginner | tutorial | electronjs | windows | mac | linux | latest-tech-stories | web-monetization

TLDR NodeJS is an environment on top of which all this resides. It helps everybody use Javascript to write English as a programming language that can be easily understood. It is both server-side as well as client-side. It will help you serve your services and provide client.side logic as well. It converts your application into a Model-View-controller architecture. We will be using a Windows 10 Operating System to develop a starter application. We use the.angular command-line tool known as ng to create a new project.via the TL;DR App

As of today, a program is an interface, a bridge between a computer and a user. There is another word that has been labeled to it, which is called an application. An application would be a good use of anyone's time in making themselves productive. Well, considering the smartphone count in regards to the personal computer count, there are more mobile applications than desktop applications. This leaves a very big grey area for the desktop users, in finding applications that are productive.
The Process of Making Applications
Applications were once written using Machine Language, then came the Assembly Language, which was more readable, and today we have Javascript, in which we will be making our desktop application. Why Javascript, in particular? Because it is more human-readable and easy to use just like the natural human language.. It has basic minimum setup and literally runs everywhere.

Our Application Architecture

The MVC (Model View Controller) where Angular takes {place?} can be understood as a set of standard practices, a mechanism that helps to ensure that you don't spill your code out of your coffee cup, by helping you to organize your code internally and quickly fix the errors when they spew up.
The model part strips the logic of an application and puts it another container, where it connects with others, but all logic is done there, so if you have some logical problems you don't have to open and search for all files. It manages all the data going in and out of the application.
The view part of the MVC (Model View Controller) is where everything renders and comes into display on a browser. All the graphics and the text you see on a web page is where the view module of the MVC exists. The controller part is where all inputs from the user are handled and it relays all of that to the model and the view.
Therefore, Angular is a Web Framework, that Google has maintained by individuals that help in developing applications that are known as SPA (Single Page Applications). It converts your application into a Model-View-Controller architecture.
ElectronJS is another framework, that enables you to convert your web application or websites into an executable application that can take full use of all the windows, mac or Linux features of any operating system.
Now Node.js is an environment on top of which all this resides. It helps everybody use Javascript to write English as a programming language that can be easily understood -. It is both server-side as well as client-side. It will help you serve your services and provide client-side logic as well.

Environment Installation Process

We will be using a Windows 10 Operating System to Develop a starter application.
Head over to the URL, and download the installer. The same website can be used to download NodeJS for other platforms as well.
Now run the installer and you should be welcomed with a NodeJS installer Screen. Click next and proceed. Select Custom Setup and check that install all from disk should be enabled especially Add to PATH. The Add to Path links the nodeJS directory to your environment paths which is like global access to all commands and executable.
This is like you don't need to go to the NodeJS Directory to run the commands, the NodeJS commands will be accessible anywhere in any directory. Once the installation is finished, let's check if Node is successfully installed.
To check that open the run dialog box from your start menu, Window Key + R Shortcut and type CMD and press enter. You should come to a command prompt.
Node -v 
Npm -v
It should give you the installed version. We have Node installed. Now let's install Angular. To install Angular use the following command
npm install -g @angular/cli
npm install typescript -g
Setting Up the Project
To create a new Angular project we use the Angular command-line tool known as ng. Use the following command to create a new project.
Ng new myDesktopApp
Would you like to add Angular routing? Yes
Which stylesheet format would you like to use? SCSS
Cd myDesktopApp
npm i -D electron@latest
Now we need to create a main.js file which will be our entry point and modify package.json, tsconifg.json and angular.json.
npm install -g electron-builder
npm install electron-builder --save-dev

Now open Package.json
  "scripts": {
    "electron": "ng build --base-href ./ && electron .",
    "electron-tsc": "tsc main.ts && ng build --base-href ./ && electron .",
    "pack": "electron-builder --dir",
    "dist": "electron-builder",
  },
  "build": {
    "appId": "com.noobs.noobapp",
    "win": {
      "target": "nsis"
    }
  },
Then the following to compile the application
Npm run dist
Now open the dist folder and you will see an installer my-desktop-app Setup 0.0.0.exe and a win-unpacked folder
Great, now you have a running desktop application with an MVC structure using angular. Enjoy and Profit. It does create an installer as well, which uses Nullsoft Scriptable Install Script. It is an authoring tool for Microsoft by Nullsoft. It uses zlib license which you can read at
https://github.com/th3n00bc0d3r/noob-angular-electron

Written by th3n00bc0d3r | Founder BreatheIO, PGP AI/ML from UTA, 10+ Year Full Stack HW & SW Engineer, Author 2 x Books, 3 x Advisor Startup
Published by HackerNoon on 2019/09/08