binger
v0.1.1
Published
A library for the Bing Search APIs
Downloads
3
Readme
node-bing
A simple client wrapper for Microsoft's Bing Search API v2.2 on Node.js.
Installation
$ git clone
$ npm install node-bing
$ node app.js
Usage
var bing = require('bing')
var b = bing({appId:"49EB4B94127F7C7836C96DEB3F2CD8A6D12BDB71"})
b.search("MooTools", function(error, response, body){
console.log(body.SearchResponse.Web.Results[0])
},{limit: 20})