# github-repo-exists

> Promise based library to check if a Github repository exists

Latest version **0.1.2** (published 2018-04-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install github-repo-exists
pnpm add github-repo-exists
yarn add github-repo-exists
bun add github-repo-exists
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2018-04-02 |
| First published | 2018-04-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Mark Molnar |
| Maintainers | molnarmark |

## Links

- npm: https://www.npmjs.com/package/github-repo-exists
- Repository: https://github.com/molnarmark/github-repo-exists
- Homepage: https://github.com/molnarmark/github-repo-exists#readme
- Issues: https://github.com/molnarmark/github-repo-exists/issues
- npm.io page: https://npm.io/package/github-repo-exists

## Recent versions

- 0.1.2 (latest) — 2018-04-02
- 0.1.0 — 2018-04-02

## README

# github-repo-exists
[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=102)](https://github.com/ellerbrock/open-source-badge/)
[![Open Source Love](https://badges.frapsoft.com/os/mit/mit.svg?v=102)](https://github.com/ellerbrock/open-source-badge/)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
![Travis](https://travis-ci.org/molnarmark/github-repo-exists.svg?branch=master)

A *tiny* promise based library to check if a GitHub repository exists.

## Usage
```javascript
const repoExists = require('github-repo-exists');
repoExists('molnarmark/nimism.co').then(result => console.log(result));
//=> true

repoExists('molnarmark/does-not-exist').then(result => console.log(result));
//=> false
```

## License
- MIT

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