Linux Fedora Express.js Web Apps Development Quick-Start Guide

January 17, 2014 | By the+gnu+linux+evangelist.

Fedora Express.js Web Apps Quick Start Guide

The Tutorial shows you How to Quick Start with Express.js Web App Hello-World on Fedora Linux 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 Web App Quick Start on Linux Fedora Top Link to Install Express.js Web Framework on Fedora.

Linux Fedora Express.js Web App Quick Start Guide - Featured
  1. How to Install Express.js on Fedora Linux

    Fedora Installing Express.js
  2. Open a Command Line Session.

  3. Create Express.js Hello-World App:

    nano hello-world.js

    Inserts:

    var http = require('http');
    var express = require('express');
    var app = express();/napp.get('/', function(req, res) {
    res.send('Hello World!');
    });
    
    http.createServer(app).listen(3000, function(){
    console.log('Express server listening on port ' + 3000);
    });
    

    Ctrl+x to Save & Exit :)

  4. Running Express.js Server + App:

    node hello-world.js

    Show Up Express.js Hello-World on Browser:

    http://localhost:3000/

  5. Getting-Started with Jade Templating System on Express.js

    Jade Express.js Template

QuickChic Theme • Powered by WordPress