Express.js Linux Mint 16 Petra Quick Start Guide
The Tutorial shows you How to Install and Getting Started with Express.js the Node.js Web Framework on Linux Mint 16 Petra i386/amd64 desktop.
Express.js 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.
To the Express.js Quick Start on Linux Mint 16 Petra Bottom Link to Getting Started with Express.js Web Apps Development on Linux.

-
How to Install Latest Node.js on Linux Mint
-
Open a Command Line Session
In case first see: Terminal QuickStart Guide.
-
Installing Express.js
- System Wide Installation
su -c "npm install express -g"
- Local Installation
npm install -g express-generator
- System Wide Installation
-
Express App Hello-World Getting-Started