1.0.0 • Published 3 years ago

google-search-results v1.0.0

Weekly downloads
36
License
MIT
Repository
github
Last release
3 years ago

google-search-results

A simple tool to search something on google.

Installing

npm i google-search-results

Usage

const google = require('google-search-results');
google('wikipedia', function(res) {
  console.log(res) /* [
  {
    title: 'Wikipedia',
    url: 'https://www.wikipedia.org/',
    description: 'Wikipedia is a free online encyclopedia, created and edited by volunteers around the world and hosted by the Wikimedia Foundation.'
  },
  {
    title: 'Wikipedia, the free encyclopedia',
    url: 'https://en.wikipedia.org/wiki/Main_Page',
    description: 'Portrait of Mariana of Austria is a 1652 or 1653 oil-on-canvas painting by Diego Velázquez, the leading artist of the Spanish Golden Age. Its subject, Dona ...'
  },
  {
    title: 'Wikipedia - Wikipedia',
    url: 'https://en.wikipedia.org/wiki/Wikipedia',
    description: 'Wikipedia is a multilingual open-collaborative online encyclopedia created and maintained by a community of volunteer editors using a wiki-based editing ...'
  },
  {
    title: 'Wikipedia:About - Wikipedia',
    url: 'https://en.wikipedia.org/wiki/Wikipedia:About',
    description: "Wikipedia is an online free-content encyclopedia project helping to create a ... Wikipedia's articles provide links designed to guide the user to related pages with<wbr> ..."
  },
  {
    title: 'Wiki - Wikipedia',
    url: 'https://en.wikipedia.org/wiki/Wiki',
    description: 'A wiki is a hypertext publication collaboratively edited and managed by its own audience directly using a web browser. A typical wiki contains multiple pages for<wbr> ...'
  },
  {
    title: 'English Wikipedia - Wikipedia',
    url: 'https://en.wikipedia.org/wiki/English_Wikipedia',
    description: 'The English Wikipedia is the English-language edition of the free online encyclopedia Wikipedia. Founded on 15 January 2001, it is the first edition of Wikipedia ...'
  },
  {
    title: 'Wikipedia - Home | Facebook',
    url: 'https://www.facebook.com/wikipedia/',
    description: 'Wikipedia. 5628712 likes · 7448 talking about this. A free, collaborative, and multilingual internet encyclopedia.'
  },
  {
    title: 'List of Wikipedias - Meta - Meta Wikimedia',
    url: 'https://meta.wikimedia.org/wiki/List_of_Wikipedias',
    description: 'The table entries are ordered by current article count. Each entry gives the language name in English (linked to the English Wikipedia article for the language); its " ...'
  }
] */
})
1.0.0

3 years ago