Express is a NodeJS web application framework. It provides robust set of features and can be used for building single-page, multi-page as well as hybrid web-based applications.
This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo’ to the commands to get root privileges. I will show you through the step by step installation Express.js Web Server on an Ubuntu 16.04 Xenial Xerus server.
Install Express.js Web Server on Ubuntu 16.04 LTS
Step 1. First make sure that all your system packages are up-to-date by running these following apt-get commands in the terminal.
sudo apt-get update sudo apt-get upgrade
Step 2. Installing Node.JS.
First, add the Node.JS official repository with the command below:
curl -sL https://deb.nodesource.com/setup_8.x | -E bash -
Install Node.JS using following command:
apt-get install nodejs
Step 3. Installing Express.JS on Ubuntu 16.04 LTS.
Install the Express.JS package, the command is:
npm install express
To make life easier, we will use a neat little module called express-generator, To install Express Generator, simply execute:
npm install -g express-generator
We are going to install “EJS” rendering engine for our project, you can set it up using the following command:
express -v ejs wpcademy
It will create a new directory (wpcademy) in our project. Now you have to switch into it and execute the following command to make sure that you have all of the required modules:
cd wpcademy/ npm install
Now you can start your Express.JS project using the following command:
npm start
Step 4. Accessing Express.JS.
Express.JS will be available on HTTP port 3000 by default. Open your favorite browser and navigate to http://yourdomain.com:3000 or http://server-ip:3000 and complete the required the steps to finish the installation. If you are using a firewall, please open port 3000 to enable access to the control panel.
Congratulation’s! You have successfully installed Express.js. Thanks for using this tutorial for installing Express.js Web Server on your Ubuntu 16.04 LTS. For additional help or useful information, we recommend you to check the official Express.js web site.