UNPKG
@tacohitbox/bing-scraper
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Scrape results from Microsoft Bing.
@tacohitbox/bing-scraper
/
tests
/
images.js
12 lines
(11 loc)
•
212 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
bing =
require
(
"../index"
); bing.
searchImages
({
q
:
"bojack horseman"
,
pageCount
:
2
},
function
(
err, resp
) {
if
(err) {
console
.
log
(
"Error scraping"
, err); }
else
{
console
.
log
(resp); } })