OpenSUSE Express.js Web Apps Quick Start Guide
The Tutorial shows you How to Quick Start with Express.js Web App Hello-World on openSUSE 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 openSUSE Top Link to Install Express.js Web Framework on openSUSE.
-
How to Install Express.js on openSUSE Linux
-
Open a Command Line Session.
-
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 :)
-
Running Express.js Server + App:
node hello-world.js
Show Up Express.js Hello-World on Browser:
http://localhost:3000/
-
Getting-Started with Jade Templating System on Express.js