Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gatsbycentral/gatsby-source-eventbrite
GatsbyJS source plugin for Eventbrite
https://github.com/gatsbycentral/gatsby-source-eventbrite
eventbrite-api gatsbyjs react
Last synced: 3 months ago
JSON representation
GatsbyJS source plugin for Eventbrite
- Host: GitHub
- URL: https://github.com/gatsbycentral/gatsby-source-eventbrite
- Owner: GatsbyCentral
- Created: 2018-08-06T14:18:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-19T15:36:20.000Z (over 5 years ago)
- Last Synced: 2024-10-13T00:41:18.698Z (3 months ago)
- Topics: eventbrite-api, gatsbyjs, react
- Language: JavaScript
- Homepage:
- Size: 608 KB
- Stars: 5
- Watchers: 3
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# gatsby-source-eventbrite
[![Greenkeeper badge](https://badges.greenkeeper.io/GatsbyCentral/gatsby-source-eventbrite.svg)](https://greenkeeper.io/)
[![Build Status](https://travis-ci.org/GatsbyCentral/gatsby-source-eventbrite.svg?branch=master)](https://travis-ci.org/GatsbyCentral/gatsby-source-eventbrite)Source plugin for pulling events and related data from eventbrite.
WORK IN PROGRESS: At the moment it just fetches `events` and `venues` from eventbrite.com without further processing or filtering. Other Endpoints are configurable but haven't been tested yet.
Works with Eventbrite's API v3.## Install
`npm install --save gatsby-source-eventbrite`
## How to use
```javascript
// In your gatsby-config.js
plugins: [
{
resolve: `gatsby-source-eventbrite`,
options: {
organizationId: `The ID of your organization`,
accessToken: `your_access_token`,
// OPTIONAL: Defaults are Events and Venues
entities: ['events', 'venues','...']
},
},
]
```