Node.js module for the Bing Search API (Cognitive Services)
Find a file
2014-09-19 14:30:02 +02:00
lib Parse body before calling back 2014-09-19 14:30:02 +02:00
.gitignore Ignore t.js 2014-09-19 14:22:53 +02:00
index.js Git init 2014-09-18 18:24:52 +02:00
package.json Add package.json 2014-09-18 18:56:02 +02:00
README.md Update Readme 2014-09-18 19:42:33 +02:00

Node Bing API

Node.js lib for the Azure Bing Web Search API

Installation

npm install node-bing-api

Usage

var Bing = require('node-bing-api')({ accKey: "your-account-key" });

Bing.search("Android", function(error, res, body){
  console.log(body);
}));

License

MIT