-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
68 lines (47 loc) · 1.59 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* Module dependencies.
*/
var express = require('express');
var http = require('http');
var path = require('path');
var moduloJS = require('modulojs');
var myMod = function(server){
return this;
}
// Initialisz needed variables and routes for the mod..
// As module or standalone..
myMod.initMod = function(server) {
var mod = express();
var mypath = __dirname;
mod.conf = server.conf;
mod.set('views', path.join(__dirname, 'views'));
mod.set('view engine', 'jade');
mod.use(express.cookieParser());
mod.use(express.session({
secret: 'secret'
}));
mod.use(express.urlencoded());
mod.use(express.methodOverride());
// Loading alls routes and middlewares
moduloJS.configure(mod,mypath);
moduloJS.beforeRouting(mod,mypath);
moduloJS.routing(mod,mypath);
moduloJS.afterRouting(mod,mypath);
server.use(mod);
}
// we test if we are in standalone mod as main module
if (require.main === module) {
console.log("I'm a main mod... start listening");
var mod = express();
mod.conf = moduloJS.conf;
mod.set('port', process.env.PORT || 3000);
myMod.initMod(mod);
mod.get("/",function(req,res) {
res.send("<h1><font face='arial'>Welcome</font></h1>");
});
http.createServer(mod).listen(mod.get('port'), function(){
console.log('Express server listening on port ' + mod.get('port'));
});
}
//adding line so this mod can be himself a module for another mod
module.exports = myMod;