{"_id":"node_klout","_rev":"17-69ea95df907bea69cf2e0bb3ec7da2d6","name":"node_klout","description":"Klout API wrapper.","dist-tags":{"latest":"0.3.1"},"versions":{"0.1.0":{"author":{"name":"cojohn","email":"cojohn@gmail.com"},"name":"node_klout","description":"Klout API wrapper.","version":"0.1.0","repository":{"type":"git","url":"git://github.com/cojohn/node_klout.git"},"keywords":["klout","node_klout","api"],"main":"./index","engines":{"node":"~v0.4.12"},"_npmUser":{"name":"cojohn","email":"cojohn@gmail.com"},"_id":"node_klout@0.1.0","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.103","_nodeVersion":"v0.4.12","_defaultsLoaded":true,"dist":{"shasum":"c66fd001920cde47f4ca1023758750aa9c3ca0e3","tarball":"https://registry.npmjs.org/node_klout/-/node_klout-0.1.0.tgz","integrity":"sha512-OgLE4LmF1XYTkXbWNfdfxoic1XYZJqo7aT/iT50psK5DYWNAKLH/oABANjNVTr0Z4mW7Tu2Jt2T37fTgEzAWcw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDtXcCZoW2fIHMkMWCoyI8xw2vfGcRL9r3owjyjQ0SR3QIhANhk2K+9tajuFNHj7B9jVGDx+rQ6cJKEoOI0iXS0DJrn"}]},"maintainers":[{"name":"cojohn","email":"cojohn@gmail.com"}]},"0.1.1":{"author":{"name":"Christopher John","email":"cojohn@gmail.com"},"name":"node_klout","description":"Klout API wrapper.","version":"0.1.1","repository":{"type":"git","url":"git://github.com/cojohn/node_klout.git"},"keywords":["klout","node_klout","api"],"main":"./index","engines":{"node":">= 0.4.10"},"_npmUser":{"name":"cojohn","email":"cojohn@gmail.com"},"_id":"node_klout@0.1.1","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.0-alpha-6","_nodeVersion":"v0.6.5","_defaultsLoaded":true,"dist":{"shasum":"41444b8a150186703a86a741c586d5c4bc0b1d51","tarball":"https://registry.npmjs.org/node_klout/-/node_klout-0.1.1.tgz","integrity":"sha512-0zYuEstEM902Il4o2UHUzVdP6osQ/7Xc2oTycAGXTjQinNiK4W2MMB1u/bkVvwJL5pHidCdBnBanG266DoK78g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDGWcPinpG+f3Ej2UcHAXz7jR6QeKCXjcuzrB0n9/pi0AIhAPKE7BL035K63mQWv2lGyJcj8+PcjuH9O6JmjiNLYva3"}]},"maintainers":[{"name":"cojohn","email":"cojohn@gmail.com"}]},"0.2.1":{"author":{"name":"Christopher John","email":"cojohn@gmail.com"},"name":"node_klout","description":"Klout API wrapper.","version":"0.2.1","repository":{"type":"git","url":"git://github.com/cojohn/node_klout.git"},"keywords":["klout","node_klout","api"],"main":"./index","engines":{"node":">= 0.4.10"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_npmUser":{"name":"cojohn","email":"cojohn@gmail.com"},"_id":"node_klout@0.2.1","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.0-3","_nodeVersion":"v0.6.10","_defaultsLoaded":true,"dist":{"shasum":"ec2359a8e997a99fbf8c951d9b742a05153afbc6","tarball":"https://registry.npmjs.org/node_klout/-/node_klout-0.2.1.tgz","integrity":"sha512-45rqcvycUR8wfKNC9ontff6dUYLix/omEa6CNwI9Y7eDOQVDdTzzLHqZPEi/lFPk52QhKLoEpYq/alJoBAD5Yg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDzUW+u+qtVtSKGbLWG8Mno0vbuH3Ah3kWOA2e4utl9uAIgGMA13URD/8B8ut3Hdxwjsqy2OxrA+ayySqx6icDmPeQ="}]},"readme":"# node_klout\n\nSimple wrapper for the Klout API. Users is an array. The constructor supports passing XML, but I haven't implemented that yet. Like the API, users is always an array.\n\nTo run the tests, edit `./test/test.js`, replacing YOUR_KEY with your application's API key, then:\n\n```\nnode test/test\n```\n\n## Version v2\n\nIn order to use the `v2` API, instantiate a new instance of node_klout like so:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout(\"YOUR_V2_KEY\", \"json\", \"v2\");\n```\n\nor:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout().setKey(\"YOUR_V2_KEY\").setVersion(\"v2\");\n```\n\nNode_klout supports the retrieval of a user's Klout identifier by Twitter screen name or numeric identifier.\n\n```javascript\nklout.getKloutIdentity(twitter_screen_name_or_identifier, function(error, klout_user) {\n\t...\n});\n```\n\nThe returned `klout_user` variable is an object as documented by the Klout API v2 docs:\n\n```\n{\n\t\"id\": \"123456789\",\n\t\"network\": \"ks\"\n}\n```\n\nThe following methods are supported, where `klout_response` is an object as documented by the Klout API v2 docs:\n\n```javascript\nklout_v2.getUser(klout_id, function(error, klout_response) {\n\t// ...\n});\n\nklout_v2.getUserScore(klout_id, function(error, klout_response) {\n\t// ...\n});\t\n\nklout_v2.getUserTopics(klout_id, function(error, klout_response) {\n\t// ...\n});\t\nklout_v2.getUserInfluence(klout_id, function(error, klout_response) {\n\t// ...\n});\n```\n\n\n## Version 1\n\nAll methods are supported:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout(\"YOUR_KEY\");\n\nklout.getKlout(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\nklout.getSingleKlout(\"_cojohn\", function(error, score) {\n\tconsole.log(score);\n});\n\nklout.getShow(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\t\nklout.getTopics(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\nklout.getInfluencedBy(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\nklout.getInfluencerOf(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n```\n","maintainers":[{"name":"cojohn","email":"cojohn@gmail.com"}]},"0.2.2":{"author":{"name":"Christopher John","email":"cojohn@gmail.com"},"name":"node_klout","description":"Klout API wrapper.","version":"0.2.2","repository":{"type":"git","url":"git://github.com/cojohn/node_klout.git"},"keywords":["klout","node_klout","api"],"main":"./index","engines":{"node":">= 0.4.10"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"_npmUser":{"name":"cojohn","email":"cojohn@gmail.com"},"_id":"node_klout@0.2.2","dependencies":{},"devDependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.0-3","_nodeVersion":"v0.6.10","_defaultsLoaded":true,"dist":{"shasum":"6d77b5e9892c573690442e8a792efa79c11f204c","tarball":"https://registry.npmjs.org/node_klout/-/node_klout-0.2.2.tgz","integrity":"sha512-hgn8NNbVRDyHLQTbuSrN504ZSaG8DBLCXwE09dfVSBdBtC49VPT67JqcYOtYC6qdS6BgFbR0IrgsQMXuAhS56g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFmUnErhJ6Hq6ZJEUXA+u2kOVFS25p8JA4rZTifcfA35AiEA8w+n7WHtDvCKYxKak6tjgYLNJJZK1eRjdmFyiiqyJDk="}]},"readme":"# node_klout\n\nSimple wrapper for the Klout API. Users is an array. The constructor supports passing XML, but I haven't implemented that yet. Like the API, users is always an array.\n\nTo run the tests, edit `./test/test.js`, replacing YOUR_KEY with your application's API key, then:\n\n```\nnode test/test\n```\n\n## Version v2\n\nIn order to use the `v2` API, instantiate a new instance of node_klout like so:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout(\"YOUR_V2_KEY\", \"json\", \"v2\");\n```\n\nor:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout().setKey(\"YOUR_V2_KEY\").setVersion(\"v2\");\n```\n\nNode_klout supports the retrieval of a user's Klout identifier by Twitter screen name or numeric identifier.\n\n```javascript\nklout.getKloutIdentity(twitter_screen_name_or_identifier, function(error, klout_user) {\n\t...\n});\n```\n\nThe returned `klout_user` variable is an object as documented by the Klout API v2 docs:\n\n```\n{\n\t\"id\": \"123456789\",\n\t\"network\": \"ks\"\n}\n```\n\nThe following methods are supported, where `klout_response` is an object as documented by the Klout API v2 docs:\n\n```javascript\nklout_v2.getUser(klout_id, function(error, klout_response) {\n\t// Returns a user object\n});\n\nklout_v2.getUserScore(klout_id, function(error, klout_response) {\n\t// Returns a user's score object\n});\t\n\nklout_v2.getUserTopics(klout_id, function(error, klout_response) {\n\t// Returns an array of user topics\n});\t\n\nklout_v2.getUserInfluence(klout_id, function(error, klout_response) {\n\t// Returns a user's influence object\n});\n\nklout_v2.getUserNetworkHandle(klout_id, function(error, klout_response) {\n\t// Returns a user's network (Twitter) identifier\n});\n```\n\n\n## Version 1\n\nAll methods are supported:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout(\"YOUR_KEY\");\n\nklout.getKlout(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\nklout.getSingleKlout(\"_cojohn\", function(error, score) {\n\tconsole.log(score);\n});\n\nklout.getShow(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\t\nklout.getTopics(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\nklout.getInfluencedBy(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\nklout.getInfluencerOf(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n```\n","maintainers":[{"name":"cojohn","email":"cojohn@gmail.com"}]},"0.2.3":{"author":{"name":"Christopher John","email":"cojohn@gmail.com"},"contributors":[{"name":"Christopher John"},{"name":"m-abaei-ngpvan"}],"name":"node_klout","description":"Klout API wrapper.","version":"0.2.3","repository":{"type":"git","url":"git://github.com/cojohn/node_klout.git"},"keywords":["klout","node_klout","api"],"main":"./index","engines":{"node":">= 0.4.10"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"readme":"# node_klout\n\nSimple wrapper for the Klout API. Users is an array. The constructor supports passing XML, but I haven't implemented that yet. Like the API, users is always an array.\n\nTo run the tests, edit `./test/test.js`, replacing YOUR_KEY with your application's API key, then:\n\n```\nnode test/test\n```\n\n## Version v2\n\nIn order to use the `v2` API, instantiate a new instance of node_klout like so:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout(\"YOUR_V2_KEY\", \"json\", \"v2\");\n```\n\nor:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout().setKey(\"YOUR_V2_KEY\").setVersion(\"v2\");\n```\n\nNode_klout supports the retrieval of a user's Klout identifier by Twitter screen name or numeric identifier.\n\n```javascript\nklout.getKloutIdentity(twitter_screen_name_or_identifier, function(error, klout_user) {\n\t...\n});\n```\n\nThe returned `klout_user` variable is an object as documented by the Klout API v2 docs:\n\n```\n{\n\t\"id\": \"123456789\",\n\t\"network\": \"ks\"\n}\n```\n\nThe following methods are supported, where `klout_response` is an object as documented by the Klout API v2 docs:\n\n```javascript\nklout_v2.getUser(klout_id, function(error, klout_response) {\n\t// Returns a user object\n});\n\nklout_v2.getUserScore(klout_id, function(error, klout_response) {\n\t// Returns a user's score object\n});\t\n\nklout_v2.getUserTopics(klout_id, function(error, klout_response) {\n\t// Returns an array of user topics\n});\t\n\nklout_v2.getUserInfluence(klout_id, function(error, klout_response) {\n\t// Returns a user's influence object\n});\n\nklout_v2.getUserNetworkHandle(klout_id, function(error, klout_response) {\n\t// Returns a user's network (Twitter) identifier\n});\n```\n\n\n## Version 1\n\nAll methods are supported:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout(\"YOUR_KEY\");\n\nklout.getKlout(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\nklout.getSingleKlout(\"_cojohn\", function(error, score) {\n\tconsole.log(score);\n});\n\nklout.getShow(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\t\nklout.getTopics(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\nklout.getInfluencedBy(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n\nklout.getInfluencerOf(\"_cojohn\", function(error, users) {\n\tconsole.log(users);\n});\n```\n","_id":"node_klout@0.2.3","dist":{"shasum":"bcd4527eb81e0e92e830c7cbeed102669f0aa0c6","tarball":"https://registry.npmjs.org/node_klout/-/node_klout-0.2.3.tgz","integrity":"sha512-n1z9lVODdqqeVtQoWIt1EjwPztfE+lJ2zPvvCrydX8rsD5yIr1RMj/YGDELmCS89W5bbqEUYEjPAZm2Xtx6vkQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHq8C4tBNj35k/l2JeV1i/V4BVh8mWX5jNF7l/xGe5XZAiEAzt0KEdzVBOG5iID8Us8NQ/OfCMHsoKlYcnbCUxQjz1k="}]},"_npmVersion":"1.1.61","_npmUser":{"name":"cojohn","email":"cojohn@gmail.com"},"maintainers":[{"name":"cojohn","email":"cojohn@gmail.com"}]},"0.3.0":{"author":{"name":"Christopher John","email":"cojohn@gmail.com"},"contributors":[{"name":"Christopher John"},{"name":"m-abaei-ngpvan"},{"name":"Michael De Lorenzo"}],"name":"node_klout","description":"Klout API wrapper.","version":"0.3.0","repository":{"type":"git","url":"git://github.com/cojohn/node_klout.git"},"keywords":["klout","node_klout","api"],"main":"./index","engines":{"node":">= 0.4.10"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"readme":"# node_klout\n\nSimple wrapper for the Klout API.\n\nTo run the tests, edit `./test/test.js`, replacing YOUR_KEY with your application's API key, then:\n\n```\nAPI_KEY=<your Klout API key> node test/test\n```\n\n## Version v2\n\nIn order to use the `v2` API, instantiate a new instance of node_klout like so:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout(\"YOUR_V2_KEY\");\n```\n\nNode_klout supports the retrieval of a user's Klout identifier by Twitter screen name or numeric identifier.\n\n```javascript\nklout.getKloutIdentity(twitter_screen_name_or_identifier, function(error, klout_user) {\n\t...\n});\n```\n\nThe returned `klout_user` variable is an object as documented by the Klout API v2 docs:\n\n```\n{\n\t\"id\": \"123456789\",\n\t\"network\": \"ks\"\n}\n```\n\nThe following methods are supported, where `klout_response` is an object as documented by the Klout API v2 docs:\n\n```javascript\nklout_v2.getUser(klout_id, function(error, klout_response) {\n\t// Returns a user object\n});\n\nklout_v2.getUserScore(klout_id, function(error, klout_response) {\n\t// Returns a user's score object\n});\t\n\nklout_v2.getUserTopics(klout_id, function(error, klout_response) {\n\t// Returns an array of user topics\n});\t\n\nklout_v2.getUserInfluence(klout_id, function(error, klout_response) {\n\t// Returns a user's influence object\n});\n\nklout_v2.getUserNetworkHandle(klout_id, function(error, klout_response) {\n\t// Returns a user's network (Twitter) identifier\n});\n```","_id":"node_klout@0.3.0","dist":{"shasum":"a2072da39e393f47a833843e251fc3d4b042d220","tarball":"https://registry.npmjs.org/node_klout/-/node_klout-0.3.0.tgz","integrity":"sha512-hTtNqrskcivtMZVfapQCvMOIK+F0Zdff4PTT7h4eupGSs9gPcatUS/4RIrmzXi1fsgd7niuUBWIk5XDB7sZWCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCSQZHGXiBHCCn5Md3Xy7h938PS6EvqgWuNn4mNVYbqugIhALcBlD97TQp8Z5NDziplbni0Egl61twrC/Uo36vq13Pk"}]},"_npmVersion":"1.1.61","_npmUser":{"name":"cojohn","email":"cojohn@gmail.com"},"maintainers":[{"name":"cojohn","email":"cojohn@gmail.com"}]},"0.3.1":{"author":{"name":"Christopher John","email":"cojohn@gmail.com"},"contributors":[{"name":"Christopher John"},{"name":"m-abaei-ngpvan"},{"name":"Michael De Lorenzo"}],"name":"node_klout","description":"Klout API wrapper.","version":"0.3.1","repository":{"type":"git","url":"git://github.com/cojohn/node_klout.git"},"keywords":["klout","node_klout","api"],"main":"./index","engines":{"node":">= 0.4.10"},"licenses":[{"type":"MIT","url":"http://www.opensource.org/licenses/mit-license.php"}],"readme":"# node_klout\n\nSimple wrapper for the Klout API.\n\nTo run the tests, edit `./test/test.js`, replacing YOUR_KEY with your application's API key, then:\n\n```\nAPI_KEY=<your Klout API key> node test/test\n```\n\n## Version v2\n\nIn order to use the `v2` API, instantiate a new instance of node_klout like so:\n\n```javascript\nvar Klout = require(\"node_klout\"),\n\tklout = new Klout(\"YOUR_V2_KEY\");\n```\n\nNode_klout supports the retrieval of a user's Klout identifier by Twitter screen name or numeric identifier.\n\n```javascript\nklout.getKloutIdentity(twitter_screen_name_or_identifier, function(error, klout_user) {\n\t...\n});\n```\n\nThe returned `klout_user` variable is an object as documented by the Klout API v2 docs:\n\n```\n{\n\t\"id\": \"123456789\",\n\t\"network\": \"ks\"\n}\n```\n\nThe following methods are supported, where `klout_response` is an object as documented by the Klout API v2 docs:\n\n```javascript\nklout_v2.getUser(klout_id, function(error, klout_response) {\n\t// Returns a user object\n});\n\nklout_v2.getUserScore(klout_id, function(error, klout_response) {\n\t// Returns a user's score object\n});\t\n\nklout_v2.getUserTopics(klout_id, function(error, klout_response) {\n\t// Returns an array of user topics\n});\t\n\nklout_v2.getUserInfluence(klout_id, function(error, klout_response) {\n\t// Returns a user's influence object\n});\n\nklout_v2.getUserNetworkHandle(klout_id, function(error, klout_response) {\n\t// Returns a user's network (Twitter) identifier\n});\n```","readmeFilename":"README.md","bugs":{"url":"https://github.com/cojohn/node_klout/issues"},"homepage":"https://github.com/cojohn/node_klout","_id":"node_klout@0.3.1","dist":{"shasum":"dab52cf10768966bcf7fa025b5562df74f7db0bd","tarball":"https://registry.npmjs.org/node_klout/-/node_klout-0.3.1.tgz","integrity":"sha512-n0cYoxKUXTMYJf5PwPYTepUdNrakbjuz1puMHJ1/KfXXhwC1JNBnHb6yEVg7wwHzS1ctGoj0jI91metAo5GeuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFpD8pAskboeN92jQCzY8ccf6jWHZIq/BkvRfjOjukD/AiACYak6FwPc43oW39Z9ncQdGHIVDpPs4AntjaH/WVPMDg=="}]},"_from":".","_npmVersion":"1.3.17","_npmUser":{"name":"cojohn","email":"cojohn@gmail.com"},"maintainers":[{"name":"cojohn","email":"cojohn@gmail.com"}]}},"maintainers":[{"name":"cojohn","email":"cojohn@gmail.com"}],"time":{"modified":"2022-06-22T00:17:18.527Z","created":"2011-10-28T02:49:51.083Z","0.1.0":"2011-10-28T02:49:51.459Z","0.1.1":"2011-12-28T00:28:28.017Z","0.2.1":"2012-05-04T20:59:45.375Z","0.2.2":"2012-05-04T22:55:59.735Z","0.2.3":"2013-03-26T21:26:25.076Z","0.3.0":"2013-11-13T01:20:35.799Z","0.3.1":"2013-12-18T02:00:41.042Z"},"author":{"name":"Christopher John","email":"cojohn@gmail.com"},"repository":{"type":"git","url":"git://github.com/cojohn/node_klout.git"}}