@violetics/anime
v1.0.1
Published
Anime API Wrapper for https://violetics.pw/api/anime
Downloads
1
Maintainers
Readme
Violetics API Anime
Anime API Wrapper for https://violetics.pw/api/anime
@@ Created on 25-03-22 | Violetics @@
Installation
npm install @violetics/anime
yarn add @violetics/anime
Example Request
"use strict";
const Violetics = require("@violetics/anime");
const v = new Violetics("API_KEY"); // register on https://violetics.pw/ to get your own apikey
/* then, catch */
v.komiku("naruto")
.then((data) => {
console.log("data", data);
})
.catch(console.error);
/* callback */
v.komiku("naruto", (error, data) => {
if (error) return console.error(error);
console.log("data", data);
});
Information
+ dont forget to star <3
! contribute to this project! ~~~
- please add issue if you having problem with installation
! github: https://github.com/Violetics/anime