Socket
Socket
Sign inDemoInstall

imbing

Package Overview
Dependencies
32
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    imbing

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


Version published
Weekly downloads
2
Maintainers
1
Install size
1.75 MB
Created
Weekly downloads
 

Readme

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

Last updated on 14 Jul 2014

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc