Socket
Socket
Sign inDemoInstall

jsearch

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    jsearch

Search anything on google, yandex and bing


Version published
Weekly downloads
2
decreased by-50%
Maintainers
1
Install size
4.26 kB
Created
Weekly downloads
 

Readme

Source

jsearch - Simplified searcher on Google, Yandex and Bing

npm package

Install


	npm install jsearch


Super Simple to Use

jSearch is designed to be the simplest way possible to make search on populer search engines; Google, Yandex and Bing. It uses node's http and https modules.


	var js = require('jsearch');

	js.google('queryStringYouWant',10,function(response){
		console.log(response) // Show the links for 10 pages on Google
	})


Completely usage

It has 3 methods for 3 search engines. On every methods;

  • First parameter is what you want to search.
  • Second parameter is how many page to search.
  • Third and last parameter is to callback for the results.

Note : Result is an array !

	
	var js = require('jsearch');
	
	js.google('queryStringYouWant',10,function(response){
		console.log(response) // for Google results
	})
	
	js.yandex('queryStringYouWant',10,function(response){
		console.log(response) // for Yandex results
	})
	
	js.bing('queryStringYouWant',10,function(response){
		console.log(response) // for Bing results
	})
	

Google, Yandex and Bing

jSearch supports 3 search engines now. But it is developing for other engines. Soon, it will support more search engines.


Changes

Follow the changes on jSearch Docs

Keywords

FAQs

Last updated on 06 Apr 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc