Skip to content
This repository has been archived by the owner on Feb 17, 2018. It is now read-only.

Commit

Permalink
Initial commit via nodester-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
riedel committed Dec 31, 2011
1 parent 7341c64 commit 5132d72
Showing 1 changed file with 5 additions and 55 deletions.
60 changes: 5 additions & 55 deletions server.js
Original file line number Diff line number Diff line change
@@ -1,55 +1,5 @@
/**
* Feedability: Node.js Feed Proxy With Readability
* Copyright (c) 2011, Matthias -apoc- Hecker <http://apoc.cc/>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
console.log('Feedability : NodeJS Feed Proxy With Readability');

/**
* Core module for startup and shutdown of the feedability HTTP server.
*
* @fileOverview
*/
// built in libraries
//
var fs = require('fs'),
http = require('http'),
util = require('util');

// internal libraries
var cfg = require('./lib/cfg.js'),
log = new (require('./lib/log.js').Logger)('core'),
func = require('./lib/func.js'),
ProxyRequest = require('./lib/proxy.js').ProxyRequest;

// some variables used for the http server
var bind = cfg.get('proxy')['bind'];
var port = cfg.get('proxy')['port'];

// create the http server with the feed proxy
http.createServer(function(request, response) {

try {
var proxy_request = new ProxyRequest(request, response);
proxy_request.process();
}
catch(exception) {
log.error('proxy request exception: '+exception);
}

}).listen(port, bind);
console.log('http server listening on '+bind+' port '+port);
console.log('open a browser and try: http://127.0.0.1:'+port+'/\n');

var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\nApp (feedability) is running..');
}).listen(13322);

0 comments on commit 5132d72

Please sign in to comment.