ImUrX / jisho-extender

A web-server that scraps and uses Jisho's API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jisho-extender is a scrapper that extends the current "official" API

This is not a library, this is a server, thought for running it as a "microservice"

GET /search/words

Supported parameters: keyword: string

It's the same as the current Jisho API but it adds 2 new properties:

const word = data[0];
console.log(word.audio) /*
    returns {
        mp3: "cloudflare link",
        ogg: "cloudflare link"
    } or returns an empty object
*/
console.log(word.japanese[0].furigana) /*
    (Only on the first index of japanese array)
    returns [
        "す",
        "",
        ""
    ]
    This example is from "住まい"
*/

About

A web-server that scraps and uses Jisho's API

License:MIT License


Languages

Language:JavaScript 81.1%Language:Dockerfile 18.9%