azure
Version:
Microsoft Azure Client Library for node
60 lines (47 loc) • 1.74 kB
JavaScript
//
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
/**
* Module dependencies.
*/
var express = require('express')
, Logger = require('./logger.js')
, routes = require('./routes')
, utility = require('./util.js');
var app = module.exports = express.createServer();
var Endpoint = "HttpIn";
var log = new Logger();
// Configuration
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(__dirname + '/public'));
});
app.configure('development', function(){
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('production', function(){
app.use(express.errorHandler());
});
// Routes
app.get('/', routes.index);
utility.getListenAddress(Endpoint, function(error, host, port) {
app.listen(port, host);
console.log("Express server listening on hostname %s port %d in %s mode", host, port, app.settings.env);
log.write("Express server listening on hostname " + host +", port " + port + " in " + app.settings.env + "mode");
});