Skip to main content

NodeJS Interview Questions

NodeJS Interview Questions


1) How to access the Windows Environment Variables programmatically via NodeJS?

The process.env will provide the required functionality.

  process.env.HOME

  process.env.HOMEPATH

 

In order to have this dynamically we can have

 

  var  nodePath = 'NODE_PATH';

  process.env[nodePath];

 

2) What is async and await in NodeJS?

async à in simple terms marks the function to run asynchronously

await à Marks the caller to wait until the function executes.

3) How to create a directory in NodeJS?

 

  var fileSystem = require('fs'); 

  var DIR_NAME = 'test';

 

  if(!fileSystem.exists(DIR_NAME)){

    fileSystem.mkdir(DIR_NAME);

  }

 

4) How to use jQuery in NodeJS?

We need to install jQuery via npm then use it as follows

npm install jquery

Usually point it to $ by

var $ = require('jquery');

 Sometimes we need to install the jsdom also to get the handle of the window

npm install jsdom

 

5) How to call a function / method from another file in NodeJS?

Using the module.exports

For example if we want to call a function checkServiceAvailablity from the service httpService.ts

Steps:

// in httpService.ts

module.exports =

{

checkServiceAvailablityfunction(serviceName:any){

// For example, returning true

return true;

}

    };

 

In the desired page

Require it in the top

Then call it in the code

    // In the desired place

    var httpServ = require('../httpService.ts');

    

    if(httpServ.checkServiceAvailablity('REST_SERVICE_PATH')){

        // Do action

    }else{

        // Throw error : Service not available

    }

 

 6) What is CJS and ESM?

CJS à Common JS

ESM à ECMA Script Modules

NodeJs is written in CJS

7) What is –save option?

--save or --s option is no longer needed from npm V5.0

By default, without the save option the npm will save all the dependencies automatically without any explicit instruction.

(Last Update on 18-August-2021)

 

Comments

Popular posts from this blog

Using of global variables in C# - Drawbacks & Solutions

How using global variables can have implications on the design, maintainability, and test-ability of C# code: Harder to understand and reason about the code:       class Program     {         public static int globalCounter = 0;         static void Main()         {             globalCounter++;             Console.WriteLine(globalCounter);         }     }   In this example, the global variable globalCounter is accessible from anywhere in the program, including the Main method. It's not clear where the value of the globalCounter is updated, it could be updated in other methods or classes, making it harder to trace the flow of data and understand the source of bugs.   More prone to errors:       class Program     {         public static string globalString;         static void Main()         {             globalString = "Hello" ;             Method1();             Method2();         }         static void Method1()         {

Task Parallel Library (TPL) and Akka.NET Alternatives

Task Parallel Library (TPL) and Akka.NET are among the most commonly used libraries for parallel and concurrent programming in the .NET ecosystem. However, there are also several other options available, depending on your specific needs: Parallel Language Integrated Query (PLINQ) is a parallel programming feature of .NET that provides an easy and efficient way to perform operations on collections in parallel. LINQ (Language Integrated Query) is a powerful feature in .NET that allows developers to work with data in a more declarative and language-integrated manner. While LINQ queries are inherently sequential, PLINQ extends LINQ by providing parallel versions of the query operators, allowing some queries to execute faster by utilizing multiple processors or cores on a machine. PLINQ is great when you are working with large collections where operations might be CPU-intensive or I/O-bound and could potentially be sped up by parallel execution. Here is a simple example of a PLI

SOLID Principles with Real World examples in C#

  SOLID Principles with Real World examples in C#   SOLID principles are formed by using S Single Responsibility Principles (SRP) O Open Closed Principle (OCP) L Liskov’s Substitution Principle (LCP) I Interface Segregation Principle (ISP) D Dependency Inversion Principle (DIP)   S Single Responsibility Principles (SRP) There should never be more than one reason for a class to change, to be precise one class should have only one responsibility Single Responsibility Principles (SRP) Real world example, A perfect match for SRP is Microservices , a Microservice will not contain functionalities other than the one it is designated to do,  Example ·                   Order Processing Service, ·                   Shipment Management Service, ·                   User Authentication Service, ·                   Catalogue List Service       class OrderProcessor     {         public void Process(Order order)         {             // Check inven