{
  "name": "social-feed",
  "version": "0.1.24",
  "description": "aggregates social media feeds",
  "main": "main.js",
  "dependencies": {
    "facebook-node-sdk": "0.2.0",
    "oauth": "0.9.10",
    "fickr": "~0.1.0"
  },
  "engines": {
    "node": ">=0.8"
  },
  "readme": "Social Feed\n====\nAggregates data from multiple social feeds\n\nConfiguration\n----\nWhen requiring the module, pass in a configuration object of the following\nstructure\n\n    {\n        twitter:{\n            path:'/1.1/statuses/user_timeline.json?screen_name=screenName',\n            clientId:'clientIdclientId',\n            clientSecret:'clientSecretclientSecretclientSecret'\n        },\n        facebook:{\n            appID:'appID',\n            appSecret:'appSecret',\n            path:'/someusername/feed',\n            accessToken:'facebookAccessToken'\n        },\n        youtube:{\n            url:'/feeds/api/users/someUser/uploads?v=2&alt=json'\n        },\n        flickr:{\n            consumerKey : 'consumerKey',\n            consumerrecret : 'consumerSecret',\n            userId : 'userId',\n            userKey : 'userKey',\n            userSecret : 'userSecret'\n        },\n        blog:{\n            host:'domain.com',\n            path:'/feeds/posts/default?alt=json'\n        }\n    }\n\nSocketIO example\n----\n\nOn the server...\n\n    var io = require('socket.io').listen(3031,{log:false});\n    var socialFeeds = require('social-feeds')(socialConfigObjectLikeTheAbove);\n\n    feed=socialFeeds.getFeeds();\n    setInterval(function(){\n        feed=socialFeeds.getFeeds();\n    }, 5000);\n\n    io.sockets.on('connection', function (socket) {\n        socket.on('refreshRequested', function (data) {\n            socket.emit('feedUpdate', feed);\n        });\n        setInterval(function() {\n            socket.emit('feedUpdate', feed);\n        }, 5000 );\n    });\n\n\nAnd on the client...\n\n\n    <script src=\"http://127.0.0.1:3031/socket.io/socket.io.js\"></script>\n    <script>\n        var socket = io.connect('http://localhost:3031');\n        socket.on('feedUpdate', function (data) {\n            console.log(data);\n        });\n    </script>\n",
  "readmeFilename": "README.md",
  "_id": "social-feed@0.1.23",
  "dist": {
    "shasum": "bd36610061d5e5737e5b83f2f7becb13aa035181"
  },
  "_from": "social-feed@>=0.1.23",
  "_resolved": "https://registry.npmjs.org/social-feed/-/social-feed-0.1.23.tgz"
}
