Author: saqibkhan

  • Code Protection

    Who will not like their code to be safe and by safe I mean ‘not getting stolen’. The files aren’t encrypted which means that anyone can get a working copy of the code.

  • Size Matters

    As you all know that Electron Apps run on Chromium, this means that each and every Electron App comes with its own version of Chromium. More worse Chromium is made of 20 million lines of code which is nearly the size of a whole Operating System! So it is like installing a whole Operating System on top…

  • Chromium

    Electron uses Chromium engine for rendering UI. This means that you can get several benefits from this like Developer Tools, Storage Access, etc.

  • Electron Apps Are Similar To Web Apps

    Part of what makes Electron Apps a good alternative to a native desktop app is the fact that Electron apps behave like Web Apps. What sets them apart is that Web Apps can only download files to the computer’s file system but Electron Apps can access the file system and can also read and write…

  • HTML, CSS, JS

    Of course this is the most important point. It is amazing that you can now build Desktop Apps using these languages as it is very easy to learn and use them.

  • Materialize CSS Collapsible

    Collapsible or accordion is used to get various predefined visuals and behavioral enhancements to display various types of accordions. Materialize CSS provides different CSS classes to apply these collapsible. Index Class name Description collapsible It is used to identify an element as a materialize collapsible component. Required for ul element. collapsible-header It is used to…

  • JavaScript Objects

    What is an Object? JavaScript is an object-based language and in JavaScript almost everything is an object or acts like an object. So, to work with JavaScript effectively and efficiently we need to understand how objects work as well as how to create your own objects and use them. A JavaScript object is just a…

  • JavaScript Functions

    What is Function? A function is a group of statements that perform specific tasks and can be kept and maintained separately form main program. Functions provide a way to create reusable code packages which are more portable and easier to debug. Here are some advantages of using functions: The following section will show you how…

  • JavaScript Loops

    Different Types of Loops in JavaScript Loops are used to execute the same block of code again and again, as long as a certain condition is met. The basic idea behind a loop is to automate the repetitive tasks within a program to save the time and effort. JavaScript now supports five different types of…

  • JavaScript Sorting Arrays

    Sorting an Array Sorting is a common task when working with arrays. It would be used, for instance, if you want to display the city or county names in alphabetical order. The JavaScript Array object has a built-in method sort() for sorting array elements in alphabetical order. The following example demonstrates how it works: Example Reversing an…