Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pguardiario/scrape-google-maps

Scrape google maps data from any html
https://github.com/pguardiario/scrape-google-maps

Last synced: 21 days ago
JSON representation

Scrape google maps data from any html

Awesome Lists containing this project

README

        

# scrape-google-maps
Scrape google maps data from any html

## install
npm i --save scrape-google-maps

## use
```javascript
const puppeteer = require('puppeteer')
const parse = require('scrape-google-maps')

async function run(){
let browser = await puppeteer.launch()
let page = await browser.newPage()
await page.goto("https://www.google.com/search?q=hardware+store+nyc")
let parsed = parse(await page.content())
await browser.close()
console.log(parsed)
}

run()
```

If you use this project please consider [supporting my work](https://www.buymeacoffee.com/pguardiario)