🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

imbing

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

imbing

A node library for Microsoft Bing Search API in Windows Azure Marketplace

0.1.23
latest
Source
npm
Version published
Weekly downloads
2
-77.78%
Maintainers
1
Weekly downloads
 
Created
Source

imbing

A client wrapper for Microsoft's Bing Search API in Windows Azure Marketplace.

Installation

$ npm install imbing

Usage


var bing = require('imbing');
var b = bing({appId:'your-api-key'});
// your api key is primary account key that you can see in the dash board of the marketplace. 

b.search('INAPP', {limit: 30}, function(error, response, body){

	if ( !error ) {
    	console.log(body.d.results[0].ID) ;
    	console.log(body.d.results[0].Title) ;
    	console.log(body.d.results[0].Url) ;
    	console.log(body.d.results[0].Source) ;
    	console.log(body.d.results[0].Description) ;
    }
	else
		console.log(error);
});

GIT

https://github.com/INAPP-Mobile/imbing.git

License

MIT

FAQs

Package last updated on 14 Jul 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts