gab icon indicating copy to clipboard operation
gab copied to clipboard

A wrapper for the gab.ai API

Results 4 gab issues
Sort by recently updated
recently updated
newest added

Thank you for your Gab wrapper. I added a few methods. See if you like it. Thank you!

## Current Behavior ```javascript api.getUser('LyndsySimon') ``` ## Desired Behavior ```javascript api.getUser('LyndsySimon') // OR api.getUser(60129) ```

enhancement

## Existing Behavior: ```javascript var api = new Gab({ authToken: '' }) ``` ## Desired Behavior ```javascript var api = new Gab({ username: 'LyndsySimon', password: 'NotR3411yMyP4ssw0rd' }) ```

enhancement

When instantiating a new `Gab` object, passing the option `async: false` should allow the library to function without returning promises. ```javascript var Gab = require('gab.ai').Gab; var api_client = new Gab({...

enhancement