Skip to main content

How to Install Node.js on Ubuntu

In our previous Node.js installation tutorial, we have explained how to install Node.js on Windows. In this tutorial, you will learn how to install Node.js on Ubuntu 18.04. Installing the Node.js is the first step to getting started and running your first application with Node.js.

Node.js is a cross-platform run-time for running server-side JavaScript applications. It provides a consistent JavaScript platform for general-purpose programming to build network applications quickly by leveraging JavaScript on both the front-end and server-side.


(more…)

How to Install Node.js on Windows

In our previous Node.js installation tutorial you have learned how to install Node.js on Ubuntu. In this tutorial, you will learn how to install Node.js on Windows to run your first Node.js application.

Node.js is an open source framework that allows us to run JavaScript on the server. The Node.js is very memory efficient as it runs as single-threaded, non-blocking and asynchronously. It supports all major platform like Windows, Linux, Unix, Mac etc. Due to Node.js awesome features, it becomes popular among web developers to develop dynamic web projects.

So if you’re using Windows operating systems and wants to start with Node.js, you’re here at right place.

(more…)

Drag And Drop File Upload with jQuery and PHP

In our previous tutorial, we have explained how to implement Export HTML Table to Excel using jQuery. In this tutorial we will explain how to implement drag and drop file upload with jQuery and PHP.

File upload is a common functionality to upload files to server by browse button. Now you can easily enhance file upload functionality to enable users to upload files by drag and drop and also through file browse. The drag and drop file upload is more user friendly as it just needs to drag and drop files on it and the files automatically gets uploaded to the server via AJAX.

So if you’re looking for implementing drag and drop file upload functionality, then you’re here at right place. We will use DropzoneJS jQuery plugin to handle drag and drop file upload functionality. The tutorial explained in easy steps with live demo and link to download source code of live demo.

(more…)

Export HTML Table to Excel using jQuery

In our previous tutorial, we have explained how to implement export data to excel using PHP and get huge response from our readers. Many of them requested to publish tutorial to export HTML table data to excel file with jQuery.

Data Export is a feature to allow users to download data to local file for future use. Mostly we implement data export functionality using server side like languages like PHP etc.

So in this tutorial you will learn how to export HTML table to Excel using jQuery. The tutorial covered with live demo to populate dynamic data into HTML table from MySQL and then download HTML table data to excel using jQuery to excel file. You can also download source code of live demo.

(more…)

Add Remove Input Fields Dynamically with jQuery

In our previous tutorial, we have explained how to implement Drag and Drop Reorder with jQuery, PHP & MySQL. In this tutorial, we will explain how to implement add and remove input fields dynamically with jQuery.

Add Remove input fields dynamically is a very user friendly feature in web applications that allows users to save more details of a subject like skills etc. The duplicate input fields are added and stops after reaching to maximum limit. There are also a remove button next to input field to remove dynamically added input fields.

The tutorial covered with live demo to add remove input fields and submit form to use input fields values. You can also link to download source code of live demo.

(more…)