Skip to main content

Express.js Tutorial

Express is a fast, assertive, essential and moderate web framework of Node.js. You can assume express as a layer built on the top of the Node.js that helps manage a server and routes. It provides a robust set of features to develop web and mobile applications. It can be used to design single-page, multi-page and hybrid web applications. It allows to setup middlewares to respond to HTTP Requests. It defines a routing table which is used to perform different actions based on HTTP method and URL. It allows to dynamically render HTML Pages based on passing arguments to templates.

Comments

Popular posts from this blog

SQL server

  Microsoft SQL Server: Microsoft SQL Server is a relational database management system (RDBMS). Applications and tools connect to a SQL Server instance or database, and communicate using Transact-SQL (T-SQL). You can install SQL Server on Windows or Linux, deploy it in a Linux container, or deploy it on an Azure Virtual Machine. SQL Server components and technologies: Database Engine The Database Engine is the core service for storing, processing, and securing data. The Database Engine provides controlled access and transaction processing to meet the requirements of the most demanding data consuming applications within your enterprise.  Integration Services SQL Server Integration Services (SSIS) is a platform for building high performance data integration solutions, including packages that provide extract, transform, and load (ETL) processing for data warehousing. Analysis Services SQL Server Analysis Services (SSAS) is an analytical data platform and toolset for personal, te...

C# Tutorial, Arrays

Hi, Welcome to all. My name is Abdul Yesdani. Today we are going to learn about arrays in C#. In our previous postings we have worked with variables. One variable can store only one value. If we want to store multiple values of same type, array variable is there to do that job. What is an array? An array variables is capable of storing multiple values of same type.   Syntax:  datatype[ ] arrayName = new datatype[size]; Example: int [ ] myNumbers = new int [ 5];  The above array variable  myNumbers is capable of storing 5 integer values. In the memory it will allocate 5 slots to store 5 values, index starting from 0 to 4. Array indexing will always start with 0 and end with size -1. Types of Arrays in C# : There are 3 types of array in C#.  Single dimensional array, multi dimensional array and jagged array. Single dimension array represent a single column or row of values. The above example is for the same. Multi dimension array represent 2 dimension or 3 di...