I just used node-google-images and it worked right away in less than 2 minutes:
https://github.com/vdemedes/node-google-images
Just call
npm install google-images
and then
client = require( 'google-images' ); client.search( 'Chicken Teriyaki', function (err, images) { console.log(images) });
will return
[{width: '1920', height: '1280', url: ' http://www.springkitchenrestaurant.com/Chicken_Teriyaki.jpg ', writeTo: [Function]}]
(in fact, it will return 4 results, but stackoverflow will not allow me to send more than two links ... - you get the gist!)
source share