1.0.0 • Published 5 years ago

gatsby-source-local-meetups v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

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
      },
    },
  ],
}