Dispersed Variable Decl In Func (DVD)

Variable Hoisting :  Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope before code execution. This means that no matter where functions and variables are declared, they are moved to the top of their scope regardless of whether their scope is…

0
Read More

Promise Anomaly (PA) Beta

A promise is an object which can be returned synchronously from an asynchronous function. Every promise executor function should call resolve and reject function. Impact If any of the executer functions are not called, promise will not be settled and remains in its pending state. Any .then() or .catch() listeners…

0
Read More

Markup in JS (MJS)

Markup in Javascript is used to insert HTML elements in javascript. Impact Creating HTML elements in JS will decrease the readability & maintainability of code affecting reusability as well. This will break the basic principle i.e. separation of presentation and business logic. This will also lead to high memory consumption…

0
Read More

Preinstallation checks for ubuntu

For seamless installation and execution, Embold should be installed on a clean machine/VM. Embold works with Node.js version 10.22.1. Ensure that the machine on which Embold is getting installed has no Node.js installed. To install .NET 5.0, run the following commands: wget https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb -O packages-microsoft-prod.debsudo dpkg -i packages-microsoft-prod.debrm packages-microsoft-prod.deb sudo…

0
Read More

Install standalone Corona on Windows

Below are the steps to install standalone corona on Windows: Download installer file from your Embold Account’s section > Releases tab. There will be file : corona_windows_X.X.X.X.zip . Right-click the zip folder, click Properties > General tab. In the ‘Security‘ section, if the Security button is blocked, unblock it and then proceed with the unzipping of…

0
Read More