# gistify

> Create gists from the command line or code.

Latest version **0.3.0** (published 2014-11-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install gistify
pnpm add gistify
yarn add gistify
bun add gistify
```

Provides the command `gistify`.

## 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.3.0 |
| Published | 2014-11-25 |
| First published | 2014-11-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Matthew Dobson |
| Maintainers | mdobs |
| Keywords | gists, github |

## Links

- npm: https://www.npmjs.com/package/gistify
- Repository: https://github.com/mdobson/gistify
- Issues: https://github.com/mdobson/gistify/issues
- npm.io page: https://npm.io/package/gistify

## Dependencies (3)

- [colors](https://npm.io/package/colors.md) ^1.0.3
- [github](https://npm.io/package/github.md) ~0.2.3
- [commander](https://npm.io/package/commander.md) ~2.5.0

## Recent versions

- 0.3.0 (latest) — 2014-11-25
- 0.2.0 — 2014-11-24
- 0.1.0 — 2014-11-24
- 0.0.0 — 2014-11-24

## README

# Gistify

Create gists easily.

## Usage

### JavaScript

```javascript
var Gistify = require('gistify');

Gistify.authenticate(username, password, function(err) {
  if(err) {
    console.log('Error authenticating');
    console.log(err);
  } else {
    //authenticated successfully

    Gistify.create('Test Gist', true, {'test.js': { 'content': 'console.log("hello");'}}, function(err) {
      if(err) {
        console.log('Error creating gist');
      } else {
        console.log('Gist created successfully');
      }
    });
  }
});
```

### Shell

```shell
$ gistify <dir|file>
```

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