1.0.0 • Published 3 years ago

node-kotakode v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
3 years ago

Kotakode

Unofficial API Wrapper Kotakode.

Usage

Question

const { Question } = require("./index");

new Question("Laravel PHP").get().then(console.log);

User

Search user by username.

const { User } = require("./index");

new User().get("hansputera").then(console.log);

Top users.

const { User } = require("./index");

new User().tops().then(console.log);

Rising Stars Users.

const { User } = require("./index");

new User().stars().then(console.log);