0.0.1 • Published 6 years ago

augu.js v0.0.1

Weekly downloads
-
License
-
Repository
-
Last release
6 years ago

augu.js

This is the API Wrapper for augu.me in JavaScript!

# NPM
$ npm i augu.js
# Yarn
$ yarn add augu.js

Example

const { Client } = require('augu.js');
const client = new Client();

client.snek()
    .then((body) => console.log(body.url));

client.astolfo()
    .then((body) => console.log(body.url));

client.rem()
    .then((body) => console.log(body.url));

client.noel()
    .then((body) => console.log(body.url));

// Text Edit
client.owlSpeak('owo').then((body) => console.log(body.text));

client.b('bbbb').then((body) => console.log(body.text));
0.0.1

6 years ago