1.1.2 • Published 5 years ago
uselessapi.js v1.1.2
uselessapi.js
Simple Node.js wrapper for Useless API.
Installation:
npm install uselessapi.js
Simple Usage:
const UselessAPI = require("uselessapi.js");
const apiClient = new UselessAPI();
// initiate the client first before using
await apiClient.initiate();
// start doing stuff
const response = await apiClient.encode({text: "Hello, World!"});
console.log(response);