TypeScript Interfaces

In this tutorial, we will learn about TypeScript Interfaces.Properties and functions that an object must have are specified by an interface. For instance, all objects that implement this interface must have the two properties “make” and “name,” which are defined for the interface ICar. Only properties and function signatures can …

TypeScript Interfaces Read More

TypeScript Abstract Class

A TypeScript Abstract class is a class which may have some unimplemented methods. These methods are called abstract methods. We can’t create an instance of an abstract class. But other classes can derived from abstract class and reuse the functionality of base class. TypeScript Interface vs Abstract Class Interface Abstract Class All …

TypeScript Abstract Class Read More

NodeJS MySQL Tutorial

One of the main advantages of using the NodeJS framework is the easy integration with the Database libraries. MySQL is one of the most popular database. NPM MySQL library provides easy integration with NodeJS application. In this tutorial, we’ll learn following operations from NodeJS application: Installing MySQL NPM module For …

NodeJS MySQL Tutorial Read More

ASP.NET Core Introduction

ASP.NET Core is a open source framework to develop web applications on Windows, Linux, and Mac operating systems. It provides framwork to build cloud-enabled web applications and web API services. It is a lighweight framework that provides high-performance.  In Techempower Benchmark, asp.net core comes in 36 position. It comes before …

ASP.NET Core Introduction Read More

Go Variables

Variables in Go refer to the names associated with values like numbers, or strings. When we declare a go variable, we specify the type and optionally the default value. If we don’t specify the default value, go automatically assigns the default value to a go variable. Go is a statically-type …

Go Variables Read More

NodeJS UUID Validate

To validate UUID (GUID) in NodeJS, we can use below options: 1. UUID NPM Package To use UUID package, we can use below command to include in our project. To validate UUID in NodeJS, we can use validate method of UUID package. Below is the sample code. In the first line, …

NodeJS UUID Validate Read More