jlpt
v1.0.4
Published
Japanese Language Proficiency Test(JLPT) kanji from N5 to N1
Downloads
4
Maintainers
Readme
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 jlpt
CommonJS
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"
// }, ...
// }]