CoderJony

Blogs

How to enable/disable ESLint in Visual Studio 2017 ?

How to enable/disable ESLint in Visual Studio 2017 ?

ESLint is a tool which allows us to write clean, optimized, organized & valid JavaScript code by following a set of rules or coding guidelines.

Read More By Ankush Jain
SOAP - A Protocol, Not a Technology

SOAP - A Protocol, Not a Technology

I have arranged this article in few key points & each point will help you in understanding what SOAP actually is.

Read More By Ankush Jain
Understand Socket Programming in Web Applications

Understand Socket Programming in Web Applications

Socket is an endpoint with an IP Address & a port number. For example, we can call this IP address 192.22.56.345:3000 as a socket. Here 192.22.56.345 is an IP Address & 3000 is a port number.

Read More By Ankush Jain
What is Angular CLI?

What is Angular CLI?

Angular CLI stands for Angular Command Line Interface. It is simply a package that is available on NPM (Node Package Manager).

Read More By Ankush Jain
How to check TypeScript version installed in Visual Studio?

How to check TypeScript version installed in Visual Studio?

To check which version of TypeScript is your Visual Studio using, there are 3 ways.

Read More By Ankush Jain
What is Thread Starvation in ASP.NET applications?

What is Thread Starvation in ASP.NET applications?

In ASP.NET, web requests are processed by IIS. Once your request arrives at IIS, a thread (also known as Worker Thread) is taken from the CLR Thread Pool to process your request. Once your request's processing completes, that thread is given back to the Thread Pool.

Read More By Ankush Jain