# @fourpost/gatsby-source-eventbrite

> Gatsby source plugin for integration of eventbrite events.

Latest version **1.0.3** (published 2019-08-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install @fourpost/gatsby-source-eventbrite
pnpm add @fourpost/gatsby-source-eventbrite
yarn add @fourpost/gatsby-source-eventbrite
bun add @fourpost/gatsby-source-eventbrite
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2019-08-13 |
| First published | 2019-06-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 12 |
| Unpacked size | 21.2 KB |
| Known vulnerabilities | 0 (+27 in 4 direct dependencies) |
| Install scripts | no |
| Author | Luis Höfer |
| Maintainers | mhogryd |
| Keywords | gatsby, gatsby-plugin, gatsby-source-plugin |

## Links

- npm: https://www.npmjs.com/package/@fourpost/gatsby-source-eventbrite
- Repository: https://github.com/fourpost/gatsby-source-eventbrite
- Homepage: https://github.com/GatsbyCentral/gatsby-source-eventbrite/blob/master/README.md
- Issues: https://github.com/GatsbyCentral/gatsby-source-eventbrite/issues
- npm.io page: https://npm.io/package/@fourpost/gatsby-source-eventbrite

## Dependencies (12)

- [qs](https://npm.io/package/qs.md) ^6.4.0
- [axios](https://npm.io/package/axios.md) ^0.18.0
- [lodash](https://npm.io/package/lodash.md) ^4.17.10
- [bluebird](https://npm.io/package/bluebird.md) ^3.5.0
- [deep-map](https://npm.io/package/deep-map.md) ^1.5.0
- [is-online](https://npm.io/package/is-online.md) ^7.0.0
- [base64-img](https://npm.io/package/base64-img.md) ^1.0.3
- [@babel/runtime](https://npm.io/package/@babel/runtime.md) 7.0.0
- [semantic-release](https://npm.io/package/semantic-release.md) ^15.9.13
- [gatsby-plugin-sharp](https://npm.io/package/gatsby-plugin-sharp.md) ^2.0.0-beta.7
- [json-stringify-safe](https://npm.io/package/json-stringify-safe.md) ^5.0.1
- [gatsby-source-filesystem](https://npm.io/package/gatsby-source-filesystem.md) ^2.0.23

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 1.0.3 (latest) — 2019-08-13
- 1.0.2 — 2019-06-20
- 1.0.1 — 2019-06-19
- 1.0.0 — 2019-06-11

## 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','...']
    },
  },
]
```

---
_Source: https://npm.io/package/@fourpost/gatsby-source-eventbrite · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
