Install Express Js Ubuntu 16.04 Xenial
Hi! This tutorial will guide you step-by-step on How to Install Express.js on Ubuntu 16.04 Xenial Xerus LTS GNU/Linux Desktop.
And Express Js for Ubuntu is a Node.js Web Framework with these Main Features:
- Minimal: Out of the Box, it supports only the very Basic Features.
- Extensible: by Pluggables Express middlewares and Node modules.
- Powerful: Anything you can do with Node, you Can Do with Express too.
Finally, to the Express.js Ubuntu 16.04 Install Guide’s Bottom Link to Getting-Started with Express.js Web Apps Development on Linux.
-
How to Install the Latest Node.js on Ubuntu Linux
-
Open a Command Line Terminal Window
(Press “Enter” to Execute Commands).Ctrl+Alt+t
In case first see: Terminal QuickStart Guide.
-
Then to Install Express.js for Ubuntu.
- System Wide Installation
sudo su -c "npm install express -g"
- Local Installation
npm install -g express-generator
- System Wide Installation
-
Express App Hello-World Getting-Started