@gafo/bingsearch
v1.0.0
Published
Simple NodeJS Bing Search API with zero dependencies.
Downloads
2
Maintainers
Readme
bingsearch
Simple NodeJS Bing Search API with zero dependencies.
Installation
npm i @gafo/bingsearch
Usage
var Bing = require('bingsearch');
var bing = new Bing(SUBSCRIPTION_KEY);
bing.query('GAFO TECH').then(result => {
console.log(JSON.stringify(result,null,2));
});