Nodejs – POFTUT

What Is Source Code In Programming?

What Is Source Code In Programming?

Source Code is a program code which is a text. In order to create applications and programs they should be coded and this code is called “source code”. Source code may change according to the application features, behavior, and programming language. An application can be created by using different programming languages and source code. Source … Read more

“HTTP 404 Not Found” Error Code and Solutions

"HTTP 404 Not Found" Error Code and Solutions

HTTP 404 (Not Found) is an HTTP status code in order to express the requested resource can not be found on the server. This is generally returned by the webserver when the provided URL does not exist. HTTP status codes are used to express the request result to the client in a structured way. Expression … Read more

npm Download, Install and Usage Tutorial

npm Download, Install and Usage Tutorial

nodejs is a popular javascript platform and framework which provides server and client-side libraries. What makes nodejs so successful is its package manager named npm or nodejs package manager. npm provides easily install, update and remove packages and load libraries according to the application configuration. Install Npm Package For Ubuntu, Debian, Mint, Kali We can … Read more

What Is String Data Type In JavaScript, Java, Python, C# , PHP, C, C++, PowerShell Programming Languages?

String is a very popular data type which can be used in different programming languages like JavaScript, Java, Python, C#, PHP, C, C++, PowerShell.  String is mainly used to store characters like a text. Alternative data types are an integer, floating point, etc where they are mainly used for mathematical calculations. For example “I am … Read more

How To Redirect HTML Web Page Into Another URL?

How To Redirect HTML Web Page Into Another URL?

HTML is a language used to build web pages. Web pages have a dynamic nature where it can change during time. One of the most popular change cases is redirecting a given web page to another web page. This is simply called a web page redirect. In this tutorial, we will examine the redirect process … Read more

What Is HTTP Error 500 and How To Solve It?

Http is the world’s most popular protocol used on the internet to exchange data and run web applications. Http protocol also has standards. Http is a stateless protocol which means separate Http requests do not have any connection with each other. Http have a mechanism to provide information about the request which is called Http … Read more

How To Install Gulp with Npm

Gulp is a streaming build system mainly used by Javascript, Typescript application developers. We may need to install gulp from npm . Install NPM In order to install gulp we will install Nodejs Package Manager. Following tutorial explains it in detail. http://www.poftut.com/install-nodejs-ubuntu-debian-fedora-centos-redhat/ Install Gulp with Npm The best and practical way to install Gulp is to … Read more

How To Install Nodejs Into Linux (Ubuntu, Debian, Fedora, CentOS, RedHat)?

How To Install Nodejs Into Linux (Ubuntu, Debian, Fedora, CentOS, RedHat)?

Nodejs is a platform built on Google Chrome Javascript runtime. Nodejs has different usage where Javascript traditionally used in client-side applications. Nodejs can be used in both client and server-side applications. In this tutorial, we will look at how to install Nodejs into Linux distributions like Ubuntu, Debian, Fedora, CentOS, RedHat. Install Nodejs Using Yum … Read more