kittrCZ / bing-me-links

A simple node module for scraping Bing and Yahoo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bing-me-links

A simple node module for links from the Bing and Yahoo search engines.

Install

Install with npm

$ npm install bing-me-links --save

Usage

const bingMeLinks = require("bing-me-links");
const vo = require("vo");

const engine = "bing";
const keyword = "javascript";  
const search = vo(bingMeLinks.search(engine, keyword));
vo(search)
  .then((links) => {
    //=> ["http://whatever1", "http://whatever2"]
  });

Running tests

Install dev dependencies:

$ npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

License

Released under the MIT license.

About

A simple node module for scraping Bing and Yahoo


Languages

Language:JavaScript 100.0%