npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

minna-no-nihongo-verbs

v0.2.2

Published

A JSON collection of verbs from the Minna no Nihongo textbook.

Downloads

26

Readme

minna-no-nihongo-verbs

A collection of verbs which appear in the Minna no Nihongo (みんなの日本語) second edition textbook, provided in JSON format.

This is provided as a resource to students creating study tools while using the textbook.

installation

npm install minna-no-nihongo-verbs

Usage

import verbs from 'minna-no-nihongo-verbs'

const chapterFiveVerbs = verbs.filter(v => v.chapter === 5)

/**
[
  {
    "id": "9JcNZNMlgd",
    chapter: 5,
    "english": "go (location)",
    "kanji": "行きます",
    "verb_group": 1,
    "polite_form": {
      "present": "いきます",
      "present_negative": "いきません",
      "past": "いきました",
      "past_negative": "いきませんでした"
    },
    "plain_form": {
      "present": "いく",
      "present_negative": "いかない",
      "past": "いいた",
      "past_negative": "いかなかった"
    },
    "te_form": {
      "present": "いって"
    }
  },
  ...
]
 */

Each verb item is provided in following format:

export interface Verb {
  id: string
  chapter: number
  english: string
  kanji: string
  verb_group: 1 | 2 | 3
  polite_form: {
    present: string
    present_negative: string
    past: string
    past_negative: string
  },
  plain_form: {
    present: string
    present_negative: string
    past: string
    past_negative: string
  }
  te_form: {
    present: string
  }
}

Id's are generated using shortId. In cases where kanji does not exist or could not be determined (eg. ならいます) the hirigana is substituted.

Exclusions

The following items were excluded as they provide a generic definition repeating a previous verb, but add an object

  • のみます was excluded from chapter 16 as it appears in chapter 6
  • かえます was excluded from chapter 18 as it has previous appearances
  • お祭り あります was excluded from chapter 21
  • りゅうがく します was excluded from chapter 21
  • めがね を します was excluded from chapter 22
  • ネクタイ を します was excluded from chapter 22
  • 先生 に ききます (ask) was excluded from chapter 23
  • でます (of change) was excluded from chapter 23

Issues

Please report any missing or incorrect entries via gitlab.

Changelog

0.2.2 Add chapter 26 verbs

0.2.1 Correction to a verb (まがります)

0.2.0 Changed structure and included more variants

0.1.1 Found and changed a duplicate id

0.1.0 Looking pretty complete

0.0.12 Move to Gitlab, update docs

0.0.11 Added missing items from chapter 18 and 19

0.0.10 Corrections and kanji for remaining items

0.0.9 Add te forms for each verb

0.0.8 Add negative and dictionary forms for each verb

0.0.7 More corrections

0.0.6 Corrections for chapter 13

0.0.5 Bug with default export

0.0.4 Remove the use of enum for verb type

0.0.3 Add verb types and missing items

0.0.2 Properly format and remove a random hidden U+200B character

0.0.1 Initial publication