JLPT
About
A simple NPM library that can return the vocabulary words using to practice for the JLPT (Japanese-Language Proficiency Test) from N5 to N1.
Usage
Node.js
Install package
npm install jlptCommonJS
const kanji = require("jlpt");ES6
import Kanji from "jlpt";Quick Reference
// Returns an level of JLPT as an object
import { getKanji } from "jlpt";
const n5 = getKanji(1);
// => [{
//  "kanji": "政",
//    "onyomi": "セイ ショウ",
//    "kunyomi": "まつりごと",
//    "meaning": "Politics, Government"
//  }, ...
//    }]