Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
bing-me-links
Advanced tools
Scrapes Baidu, Bing, StartPage, Yahoo, Webcrawler, Qwant and retrieves links in serps
A simple node module for scraping links from the Baidu, Bing, StartPage, Webcrawler, Yahoo, and Qwant search engines.
Install with npm
$ npm install bing-me-links --save
BingMeLinks uses the exp-config module for handling its' configuration in JSON files.
const bingMeLinks = require("bing-me-links");
const vo = require("vo");
const query = "javascript";
const baidu = vo(bingMeLinks.searchBaidu(query));
vo(baidu)
.then((links) => {
//=> ["http://whatever1", "http://whatever2"]
});
const bing = vo(bingMeLinks.searchBing(query));
vo(bing)
.then((links) => {
//=> ["http://whatever1", "http://whatever2"]
});
const startPage = vo(bingMeLinks.searchStartPage(query));
vo(startPage)
.then((links) => {
//=> ["http://whatever1", "http://whatever2"]
});
const webcrawler = vo(bingMeLinks.searchWebcrawler(query));
vo(webcrawler)
.then((links) => {
//=> ["http://whatever1", "http://whatever2"]
});
const yahoo = vo(bingMeLinks.searchYahoo(query));
vo(yahoo)
.then((links) => {
//=> ["http://whatever1", "http://whatever2"]
});
const qwant = vo(bingMeLinks.searchQwant(query));
vo(qwant)
.then((links) => {
//=> ["http://whatever1", "http://whatever2"]
});
Install dev dependencies:
$ npm test
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Released under the MIT license.
FAQs
Scrapes Baidu, Bing, StartPage, Yahoo, Webcrawler, Qwant and retrieves links in serps
The npm package bing-me-links receives a total of 3 weekly downloads. As such, bing-me-links popularity was classified as not popular.
We found that bing-me-links demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.