
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
flaneur-geocoder
Advanced tools
Node geocoder, relying on coordinate and Google Places ID to fetch where a location is, via Google Maps
This module intends to help developers using Google Maps and Google Places API to get consistent geocoding returns, with search-oriented information.
const FlaneurGeocoder = require('flaneur-geocoder')
const geocoder = new FlaneurGeocoder({ apiKey: ... })
geocoder.findWhereIs(48.8381, 2.2805)
.then((result) => {
console.log(result)
})
Will ouput:
{ types: [ 'locality', 'political' ],
enPoliticalComponents:
{ locality: 'Paris',
administrative_area_level_2: 'Paris',
administrative_area_level_1: 'Île-de-France',
country: 'France' },
name: 'Paris',
location: { lat: 48.856614, lng: 2.3522219 },
viewport:
{ northeast: { lat: 48.9021449, lng: 2.4699208 },
southwest: { lat: 48.815573, lng: 2.224199 } },
searchSettings:
{ coordinate: { lat: 48.856614, lng: 2.3522219 },
tag: null,
aroundPrecision: 5097.866542628929,
aroundRadius: 40782.93234103143 },
query: { lat: 48.8381, lng: 2.2805 } }
As for regular usage, tests require a Google Places API Key. To run tests locally,
please setup a GOOGLE_PLACES_FLANEUR_API_KEY environment variable with your API key.
# Update the version number in `package.json`
npm install
git tag vX.Y.Z
git push origin vX.Y.Z
npm publish
This project is using Travis. As such, maintainers should pay attention to provide the API key set up with Travis machines IP addresses.
FAQs
Node geocoder, relying on coordinate and Google Places ID to fetch where a location is, via Google Maps
We found that flaneur-geocoder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.