
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
gridsome-source-gmaps-geocode
Advanced tools
Geocode data from your Gridsome sources using the Google Maps Geocoding API.
yarn add gridsome-source-gmaps-geocode
Or
npm install --save gridsome-source-gmaps-geocode
Configure the plugin in your gridsome.config.js
module.exports = {
...
plugins: [
{
use: '@gridsome/source-filesystem',
options: {
path: '_content/**/*.md',
typeName: 'Office'
}
},
{
use: 'gridsome-source-gmaps-geocode',
options: {
apiKey: 'your-gmaps-geocode-api-key-here',
sourceTypeName: 'Office',
sourceTypeField: 'address'
}
},
]
}
You will then be able to use access the gecode result for the value of the address
field on each Office
node via the geocode
field on Office
nodes:
{
allOffice {
edges {
node {
geocode {
lat
lng
}
}
}
}
}
FAQs
Geocode data from your Gridsome sources using the Google Maps Geocoding API.
The npm package gridsome-source-gmaps-geocode receives a total of 56 weekly downloads. As such, gridsome-source-gmaps-geocode popularity was classified as not popular.
We found that gridsome-source-gmaps-geocode 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.