gatsby-source-local-meetups
v1.0.0
Published
Pulls data about upcoming events in a given category for a specific area.
Downloads
2
Readme
gatsby-source-local-meetups
Pulls data about upcoming events in a given category for a specific area.
Example
In your gatsby-config.js
:
module.exports = {
plugins: [
{
resolve: "gatsby-source-local-meetups",
options: {
// get this at https://secure.meetup.com/meetup_api/key/
apiKey: "your_api_key",
category: "tech",
latitude: "35.2271",
longitude: "-80.8431",
maxEvents: 10, // optional, default: 20
},
},
],
}