
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
raw-google-geocoder
Advanced tools
npm i raw-google-geocoder
Lost your google maps api key? No worries, this tiny module helps you parse and serialize queries straight from google.com/search. Works good with addresses in latin.
If the build is starting to fail, that means the the schema has changed and the query/regex needs to be updated, send a pull request.
var request = require('request')
var geocoder = require('raw-google-geocoder')
//object w/ url passed to the request module.
var use_https = false
var query_object = geocoder.serialize('RUA PAULINA ISABEL DE QUEIROS,, BANGU, SANTO ANDRE, 09210260, br',use_https)
//make a request with request module
request(query,function(error,res,body){
//parse the body and extract address and gps coordinates, make sure to catch any errors for bad addresses
try{
console.log geocoder.parse(body)
}catch(error){
console.error error
}
/*
addr: 'R. Paulina Isabel de Queirós - Bangú, Santo André - SP, Brazil',
lat: -23.6418355,
lon: -46.5262411
*/
})
FAQs
raw google geocode any address without an api or key
We found that raw-google-geocoder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.