Mayank Agarwal has Published 380 Articles

Node.js – dnsPromises.reverse() Method

Mayank Agarwal

Mayank Agarwal

Updated on 17-Jan-2022 11:35:55

116 Views

The dnsPromises.reverse() method performs a reverse DNS search to resolve the IPv4 or Ipv6 address to an array of hostnames. The promise is rejected with an Error object if a Success status is not encountered.SyntaxdnsPromises.reverse( ip )where, ip is the parameter that takes the input for the IP address to ... Read More

Node.js – dns.resolveSoa() Method

Mayank Agarwal

Mayank Agarwal

Updated on 17-Jan-2022 11:30:06

59 Views

The dns.resolveSoa() method uses the DNS protocol to resolve the start of authority records for the hostname. The address argument passed to the callback function will be an object that will contain the following properties −nsnamehostmasterserialrefreshentryexpireSyntaxdns.resolveSoa(hostname, callback)ParametersIt accepts the following parameters −hostname – This parameter takes the input for the ... Read More

How to download a file using Node.js?

Mayank Agarwal

Mayank Agarwal

Updated on 17-Jan-2022 11:23:34

9K+ Views

We can download file using Node.js by either using third-party libraries or using some inbuilt packages.Method 1: Using 'https' and 'fs' moduleWe can use the http GET method to fetch the files that are to be downloaded.The createWriteStream() method from fs module creates a writable stream and receives the argument ... Read More

Node.js - diffieHellman.computeSecret() Method

Mayank Agarwal

Mayank Agarwal

Updated on 17-Jan-2022 10:45:35

138 Views

The diffieHellman.computeSecret() is used for computing the shared secret using the public key of other's party and returning the computed shared secret. The suppliedKey is interpreted using the specified inputEncoding and the secret is encoded using the specified outputEncoding. If the inputEncoding is not specified the other publicKey is expected ... Read More

Node.js – Timers Module – Cancelling Timers

Mayank Agarwal

Mayank Agarwal

Updated on 24-Nov-2021 07:36:33

265 Views

A timer can only be cancelled after it is being scheduled. The Immediate class has an object for setImmediate() method and passes the same object to clearImmediate(), in case it wants to cancel the scheduled timer function.Scheduling TimersThis type of timers schedules the task to take place after a certain ... Read More

Using Redis Cache with Spring Boot

Mayank Agarwal

Mayank Agarwal

Updated on 24-Nov-2021 07:34:57

6K+ Views

In this article, we will see how to integrate Redis Cache with Spring Boot. We will learn how we can configure Redis data inside the Spring boot cache.Let's look at the dependencies first that are required to import Redis into a Spring boot application.Dependencies// Adding spring-boot cache & redis dependencies ... Read More

Node.js – dns.lookupService() Method

Mayank Agarwal

Mayank Agarwal

Updated on 24-Nov-2021 07:25:17

161 Views

The dns.lookupService() method resolves a given address and port into a hostname and service. This method uses the operating system's underlying getnameinfo implementation. A TypeError will be thrown if the address is not a valid IP address.Syntaxdns.lookupService(address, port, callback)Parametersaddress - This parameter takes input for the IP address that needs ... Read More

Node.js – diffieHellman.setPrivateKey() Method

Mayank Agarwal

Mayank Agarwal

Updated on 24-Nov-2021 07:22:03

83 Views

The diffieHellman.setPrivateKey() sets the Diffie-Hellman generated private key. The private key will be a string if an encoding argument is provided. If no encoding is provided, the private key will be of type buffer.SyntaxdiffieHellman.setPrivateKey( privateKey, [encoding] )Parametersencoding - This parameter specifies the encoding of the private Key.Example 1Create a file ... Read More

Node.js – Process Warning Event

Mayank Agarwal

Mayank Agarwal

Updated on 24-Nov-2021 07:15:45

295 Views

A 'warning' event is emitted whenever a Node.js event emits a process warning. The process warning is similar to an error that describes the exceptional conditions that are being brought to the user's attention.Node.js can emit warnings whenever it encounters any bad coding practices that could lead to poor performance ... Read More

Node.js – Timeout-ref() & Timeout-unref() method

Mayank Agarwal

Mayank Agarwal

Updated on 24-Nov-2021 07:14:23

738 Views

The Timeout object is internally created and is returned from the setTimeout() and setInterval() methods. You can use this object and pass it to either clearTimeout() or clearInterval() if you want to cancel the scheduled actions.Following are the timeout class ref objects that can be used to control the default behaviour ... Read More

Advertisements