I am trying to set the configuration for socket.io as per https://github.com/LearnBoost/socket.io/wiki/Configuring-Socket.IO
io.set('log level', 1);
But I'm getting TypeError: Object # has no method 'set' ... what's wrong? I have io = require("socket.io")
Also tried,
io.configure('production', function(){
io.set('log level', 1);
});
but no luck. what's wrong ?
EDIT:
require.paths.push('/cygdrive/c/Personal/software/nodejs/NODE/node_modules');
var express = require("express"),
fs = require("fs"),
form = require('connect-form'),
app = express.createServer(
form({ keepExtensions: true })
),
sys = require("sys"),
RentModel = require("./rent_schema"),
UserModel = require("./track_schema"),
io = require("socket.io"),
fb = require('facebook-js'),
Twitter = require('./Twitter_Analysis'),
Foursquare = require('./Foursquare_Analysis'),
YQL = require("yql"),
settings = require("./settings");
socket = io.listen(app);
:::::::::::::::::
app.listen(9999);
This works fine.. But if I change it to io = require("socket.io").listen(8080) it gives me error, listen method not found.