# get-github-event-types

> Get all Event types of the Github API from the API reference

Latest version **1.0.0** (published 2016-11-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install get-github-event-types
pnpm add get-github-event-types
yarn add get-github-event-types
bun add get-github-event-types
```

## 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.0 |
| Published | 2016-11-17 |
| First published | 2016-11-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Shinnosuke Watanabe |
| Maintainers | shinnn |
| Keywords | https, get, data, fetch, github, api, list, array, name, type, event |

## Links

- npm: https://www.npmjs.com/package/get-github-event-types
- Repository: https://github.com/shinnn/get-github-event-types
- Homepage: https://github.com/shinnn/get-github-event-types#readme
- Issues: https://github.com/shinnn/get-github-event-types/issues
- npm.io page: https://npm.io/package/get-github-event-types

## Dependencies (2)

- [cheerio](https://npm.io/package/cheerio.md) ^0.22.0
- [fettuccine](https://npm.io/package/fettuccine.md) ^1.0.2

## Alternatives

- [async-exit-hook](https://npm.io/package/async-exit-hook.md) — 3.7M weekly downloads
- [evnty](https://npm.io/package/evnty.md) — 7.2K weekly downloads
- [eleventy-plugin-asciidoc](https://npm.io/package/eleventy-plugin-asciidoc.md) — 3.5K weekly downloads
- [@jswork/next-get2get](https://npm.io/package/@jswork/next-get2get.md) — 945 weekly downloads
- [@dashersw/axon](https://npm.io/package/@dashersw/axon.md) — 934 weekly downloads

## Recent versions

- 1.0.0 (latest) — 2016-11-17
- 0.0.0 — 2016-11-17

## README

# get-github-event-types

[![NPM version](https://img.shields.io/npm/v/get-github-event-types.svg)](https://www.npmjs.com/package/get-github-event-types)
[![Build Status](https://travis-ci.org/shinnn/get-github-event-types.svg?branch=master)](https://travis-ci.org/shinnn/get-github-event-types)
[![Coverage Status](https://img.shields.io/coveralls/shinnn/get-github-event-types.svg)](https://coveralls.io/github/shinnn/get-github-event-types?branch=master)
[![dependencies Status](https://david-dm.org/shinnn/get-github-event-types/status.svg)](https://david-dm.org/shinnn/get-github-event-types)
[![devDependencies Status](https://david-dm.org/shinnn/get-github-event-types/dev-status.svg)](https://david-dm.org/shinnn/get-github-event-types?type=dev)

A [Node](https://nodejs.org/) module to get [all Event types of the Github API](https://developer.github.com/v3/activity/events/types/#event-types--payloads) from [the API reference](https://developer.github.com/v3/activity/events/types/)

```javascript
const getGithubEventTypes = require('get-github-event-types');

getGithubEventTypes().then(eventTypes => {
  eventTypes; //=> ['CommitCommentEvent', 'CreateEvent', 'DeleteEvent', ...]
});
```

## Installation

[Use npm.](https://docs.npmjs.com/cli/install)

```
npm install get-github-event-types
```

## API

```javascript
const getGithubEventTypes = require('get-github-event-types');
```

### getGithubEventTypes([*options*])

*options*: `Object` ([`Request` options](https://github.com/request/request#requestoptions-callback))  
Return: `Promise` of `Array`

## License

Copyright (c) 2016 [Shinnosuke Watanabe](https://github.com/shinnn)

Licensed under [the MIT License](./LICENSE).

---
_Source: https://npm.io/package/get-github-event-types · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
