kanjidate
TypeScript icon, indicating that this package has built-in type declarations

1.2.8 • Public • Published

kanjidate

A small JavaScript library that 1) formats date in Japanese and 2) converts dates between Gregorian calendar and Japanese calendar.

Current version (1.2.8) is implemented by TypeScript and supports both CommonJS and EMS modules. Version (1.1.3) supports Japanese new era Reiwa, which started at May 1, 2019.

Install

node.js

npm install kanjidate

in JavaScript source

var kanjidate = require("kanjidate");

Browser

<script src="/path/to/kanjidate.js"></script>

After "kanjidate.js" has been loaded, global variable kanjidate is available.

Examples

Default formatting

kanjidate.format() // -> "平成28年6月12日(日)" ; formats current date in default format
kanjidate.format(new Date(2016, 6-1, 12)) // -> "平成28年6月12日(日)" 
kanjidate.format("2016-06-12") // -> "平成28年6月12日(日)" 

Predefined format

kanjidate.format(kanjidate.f1, 2016, 6, 12) // -> "平成28年6月12日(日)"
kanjidate.format(kanjidate.f2, new Date(2016, 6-1, 12)) // -> "平成28年6月12日"
kanjidate.format(kanjidate.f3, "2016-06-12") // -> "H28.6.12"
kanjidate.format(kanjidate.f4, 2016, 6, 12) // -> "平成28年06月12日(日)"
kanjidate.format(kanjidate.f5, 2016, 6, 12) // -> "平成28年06月12日"
kanjidate.format(kanjidate.f6, 2016, 6, 12) // -> "H28.06.12"
kanjidate.format(kanjidate.f7, 2016, 6, 12, 14, 26, 8) // -> "平成28年6月12日(日) 午後2時26分8秒"
kanjidate.format(kanjidate.f8, 2016, 6, 12, 14, 26, 8) // -> "平成28年06月12日(日) 午後02時26分08秒"
kanjidate.format(kanjidate.f9, 2016, 6, 12, 14, 26, 8) // -> "平成28年6月12日(日) 午後2時26分"
kanjidate.format(kanjidate.f10, 2016, 6, 12, 14, 26, 8) // -> "平成28年06月12日(日) 午後02時26分"
kanjidate.format(kanjidate.f11, 2016, 6, 12) // -> "平成28年6月12日"
kanjidate.format(kanjidate.f12, 2016, 6, 12) // -> "平成28年06月12日"
kanjidate.format(kanjidate.f13, "2016-06-20 23:24:12") // -> "2016-06-20"
kanjidate.format(kanjidate.f14, "2016-06-20 23:24:12") // -> "2016-06-20 23:24:12"
kanjidate.format(kanjidate.fSqlDate, "2016-06-20 23:24:12") // -> "2016-06-20"
kanjidate.format(kanjidate.fSqlDateTime, "2016-06-20 23:24:12") // -> "2016-06-20 23:24:12"

Explicit formatting

// gengou
kanjidate.format("Current gengou: {G}", new Date()) // -> "Current gengou: 平成"
kanjidate.format("{G:1}", 2016, 6, 12) // -> "平" ; 1 character
kanjidate.format("{G:2}", 2016, 6, 12) // -> "平成" ; 2 characters
kanjidate.format("{G:a}", 2016, 6, 12) // -> "H"
kanjidate.format("{G:alpha}", 2016, 6, 12) // -> "Heisei"

// nen
kanjidate.format("{N}", 2016, 6, 12) // -> "28"
kanjidate.format("{N:1}", 2016, 6, 12) // -> "28" ; same as above
kanjidate.format("{N:2}", 1996, 6, 12) // -> "08"
kanjidate.format("{N:z}", 1996, 6, 12) // -> "8" ; zenkaku (wider display form)
kanjidate.format("{N:z,2}", 1996, 6, 12) // -> "08"
kanjidate.format("{N:2,z}", 1996, 6, 12) // -> "08" ; same as above
kanjidate.format("{N:g}", 1989, 1, 8) // -> "元" ; special form of first year (1 nen) 
kanjidate.format("{N:g}", 2016, 6, 12) // -> "28" ; no effect if it is not first year

// month
kanjidate.format("{M}", 2016, 6, 12) // -> "6"
kanjidate.format("{M:2}", 2016, 6, 12) // -> "06"
kanjidate.format("{M:z}", 2016, 6, 12) // -> "6"
kanjidate.format("{M:z,2}", 2016, 6, 12) // -> "06"

// day
kanjidate.format("{D}", 2016, 6, 1) // -> "1"
kanjidate.format("{D:2}", 2016, 6, 1) // -> "01"
kanjidate.format("{D:z}", 2016, 6, 1) // -> "1"
kanjidate.format("{D:z,2}", 2016, 6, 1) // -> "01"

// youbi (day of week)
kanjidate.format("{W}", 2016, 6, 14) // -> "火"
kanjidate.format("{W:1}", 2016, 6, 14) // -> "火" ; same as above
kanjidate.format("{W:2}", 2016, 6, 14) // -> "火曜"
kanjidate.format("{W:3}", 2016, 6, 14) // -> "火曜日"
kanjidate.format("{W:alpha}", 2016, 6, 14) // -> "Tuesday"

// hour
kanjidate.format("{h}", 2016, 6, 1, 19, 4, 9) // -> "19"
kanjidate.format("{h:12}", 2016, 6, 1, 19, 4, 9) // -> "7" ; am/pm format
kanjidate.format("{h:12,2}", 2016, 6, 1, 19, 4, 9) // -> "07" ; am/pm format in 2 digits
kanjidate.format("{h:z}", 2016, 6, 1, 19, 4, 9) // -> "19"

// minute
kanjidate.format("{m}", 2016, 6, 1, 19, 4, 9) // -> "4"
kanjidate.format("{m:2}", 2016, 6, 1, 19, 4, 9) // -> "04"
kanjidate.format("{m:z}", 2016, 6, 1, 19, 4, 9) // -> "4"
kanjidate.format("{m:z,2}", 2016, 6, 1, 19, 4, 9) // -> "04"

// second
kanjidate.format("{s}", 2016, 6, 1, 19, 4, 9) // -> "9"
kanjidate.format("{s:2}", 2016, 6, 1, 19, 4, 9) // -> "09"
kanjidate.format("{s:z}", 2016, 6, 1, 19, 4, 9) // -> "9"
kanjidate.format("{s:z,2}", 2016, 6, 1, 19, 4, 9) // -> "09"

// am/pm
kanjidate.format("{a}", 2016, 6, 1, 9, 4, 9) // -> "午前"
kanjidate.format("{a:am/pm}", 2016, 6, 1, 9, 4, 9) // -> "am"
kanjidate.format("{a:AM/PM}", 2016, 6, 1, 9, 4, 9) // -> "AM"

Gregorian calendar to Japanese calendar

kanjidate.toGengou(2016, 6, 30) // -> {gengou: "平成", nen: 28}

Japanese calendar to Gregorian calendar

kanjidate.fromGengou("平成", 28) // -> 2016

Japanese day of week

kanjidate.toYoubi(0) // -> "日" ; Sunday
kanjidate.toYoubi(1) // -> "月" ; Monday
kanjidate.toYoubi(2) // -> "火" ; Tuesday
kanjidate.toYoubi(3) // -> "水" ; Wednesday
kanjidate.toYoubi(4) // -> "木" ; Thursday
kanjidate.toYoubi(5) // -> "金" ; Friday
kanjidate.toYoubi(6) // -> "土" ; Saturday

Background

In Japan, currently two calendar systems are mainly used. One system is the Gregorian calendar, which is also used world wide. Another system is the traditional Japanese calendar system, which is based on the reigns of emperor and is used only in Japan. Historically, Japan had been using lunar calendar as in other East Asian countries, but had changed to the Gregorian calendar at Jan 1, 1873. This library handles dates after this epoch. Japanese calendar specifies a year with the pair of gengou and nen. gengou is the name of the era, and nen is the counting of the year in that era. For example, Gregorian year 2016 corresponds to Heisei 28 nen (that is, 28th year in the Heisei era). Representations of months and days are the same as in the Gregorian calendar.

There are four eras after Jan 1, 1873. That is "明治" (Meiji), "大正" (Taishou), "昭和" (Shouwa) and "平成" (Heisei). Their starting dates are:

  • "明治" (Meiji) 6 nen corresponds to the Gregorian year 1873.
  • "大正" (Taishou) starts at Jul 30, 1912
  • "昭和" (Shouwa) starts at Dec 25, 1926
  • "平成" (Heisei) starts at Jan 8, 1989

Period from the starting date to the end of that year is the first nen. For example, Jan 7, 1989 is the last day in the "昭和" (Shouwa) era (Shouwa 64 nen), and Jan 8, 1989 is the first day in "平成" (Heisei) era (Heisei 1 nen). The whole year 1990 (Jan 1, 1990 - Dec 31, 1990) is Heisei 2 nen. The first nen (1 nen) is also called "元年" ("元" meaning 'origin', and "年" meaning 'year').

Convert the Gregorian year to Japanese gengou and nen

// toGengou(year, month day) -- returns an object with properties of gengou and nen
toGengou(2016, 6, 30) // -> {gengou: "平成", nen: 28}
toGengou(1909, 1, 7)  // -> {gengou: "昭和", nen: 64}
toGengou(1909, 1, 8)  // -> {gengou: "平成", nen: 1}
toGengou(1910, 1, 1)  // -> {gengou: "平成", nen: 2}
toGengou(1911, 1, 1)  // -> {gengou: "平成", nen: 3}

Convert Japanese _gengou_and nen to Gregorian year

// fromGengou(gengou, nen) -- returns a number (Gregorian year)
fromGengou("平成", 28) // -> 2016

Convert day of week to Japanese

// toYoubi(dayOfWeek) -- returns a character that corresponds to dayOfWeek (indicated by number)
//                       Sunday: 0, Monday: 1, ... Saturday: 6
toYoubi(0) // "日" (Sunday)
toYoubi(1) // "月" (Monday)
toYoubi(6) // "月" (Saturday)

Japanese characters that represent day of week are: "日" (Sunday), "月" (Monday), "火" (Tuesday), "水" (Wednesday), "木" (Thursday), "金" (Friday) and "土" (Saturday).

Note: "日" is also used to indicate day in the month, and "月" is also used to indicate month. For example, Feb 3 is represented as "2月3日".

Formatting

// format() -- formats the current date with the default format
format() // -> "平成28年6月13日(月)"

Formatting of date in Japanese is conducted by format. If called without arguments, format returns a string representing the current date in the default format. The default format consists of gengou ("平成") , nen ("28年"), month ("6月"), day ("13日") and day of week ("(月)").

// format(dateArg) -- formats dateArg with the default format
format(new Date(2016, 6-1, 13)) // -> "平成28年6月13日(月)"
format("2016-06-13") // -> "平成28年6月13日(月)"
format("2016-06-13 22:53:26") // -> "平成28年6月13日(月)"

If called with one argument, format interprets the argument as date and formats the date with the default format. Acceptable arguments are as follows:

  • a JavaScript Date : its local time is used to construct the formatted string. In other words, Date class methods such as getFullYear, getMonth, ... are used to get the year, month, and other values.
  • a string of the form "YYYY-MM-DD" or "YYYY-MM-DD hh:mm:ss" : values of year, month, ... are extracted from the string.
// format(formatStr, ...) -- format the specified date according to formatStr
// format(formatStr, dateArg)
// format(formatStr, year, month, day[, hour, minute, second])
format("{G}{N}年{M}月{D}日({W}) {h}時{m}分{s}秒", "2016-06-15 14:31:23") // -> "平成28年6月15日 14時31分23秒"
format("{G}{N}年{M}月{D}日({W}) {a}{h:12}時{m}分{s}秒", 2016, 6, 15, 14, 31, 23) // -> "平成28年6月15日 午後2時31分23秒"

If called with more than one arguments, format uses the first argument as the format string and the remaining arguments to identify the date. Details of format string are described in the following sections. In essence, various elements of the calendar system is indicated between curly braces, and other parts are output as it is.

When there are only two arguments, the second argument is interpreted as the date to be formatted. It can be a JavaScript Date object or a string. These arguments are handled as in the case when format is called with single argument.

The date can be specified by supplying year, month, ... as arguments. Hour, minute, second are optional and supposed to be zero if omitted.

Format string

Format string is a template for the output string. Format string contains calculated element between curly braces and other parts are output as it is.

Calculated element is specified as follows.

{E:opt,...}

E is the part specifier that indicates what is to be output. For example, G indicates gengou. After a colon, options are supplied to control the output with finer details. Options (including the colon seperator) can be omitted.

Following is the list of part specifier:

  • G : gengou
  • N : nen
  • M : month
  • D : day
  • h : hour
  • m : minute
  • s : second
  • a : AM/PM
  • Y : Gregorian year

Formatting gengou

format("{G}", 2016, 6, 15) // -> "平成"
format("{G:1}", 2016, 6, 15) // -> "平"
format("{G:2}", 2016, 6, 15) // -> "平成" (default)
format("{G:a}", 2016, 6, 15) // -> "H"
format("{G:alpha}", 2016, 6, 15) // -> "Heisei"

Without any option, gengou part is output as two Kanji characters. Available options are as follows.

  • 1 : gengou is output as single Kanji character, such as "平", "昭", "大" or "明"
  • 2 : gengou is output as two Kanji characters, such as "平成", "昭和", "大正" or "明治". This is the default.
  • a : gengou is output as single uppercase alphabet, such as "H", "S", "T", or "M".
  • alpha : gengou is output as alphabet word, such "Heisei", "Shouwa", "Taishou", or "Meiji".

Formatting nen

format("{N}", 1996, 2, 3) // -> "8" (Gregorian year 1996 corresponds to Heisei 8 nen)
format("{N:1}", 1996, 2, 3) // -> "8" (default)
format("{N:2}", 1996, 2, 3) // -> "08" (2 digits)
format("{N:z}", 1996, 2, 3) // -> "8" (zenkaku)
format("{N:z,2}", 1996, 2, 3) // -> "08"
format("{N:g}", 1989, 1, 8) // -> "元"
format("{N:g}", 1996, 2, 3) // -> "8"
format("{N:g,2,z}", 1996, 2, 3) // -> "08"

Without any option, nen part is output as number. Available options are as follows.

  • 1 : nen is output as number. This is the default.
  • 2 : nen is output as two characters, padding "0" or "0" (zenkaku) as needed. For example, "06".
  • z : nen is output as zenkaku characters (wider characters used in Japane). For example, "6". If used with 2 option, this option changes the padding character from "0" to "0" (zenkaku zero).
  • g : if nen is identical to one, output becomes "元" (Kanji character representing the first nen). Otherwise, this option has no effect.

Options can be specified in any order. If 1 and 2 options are used multiple times, the last one (the right most one) is effective.

Formatting month

format("{M}", 2016, 6, 15) // -> "6"
format("{M:1}", 2016, 6, 15) // -> "6" (default)
format("{M:2}", 2016, 6, 15) // -> "06" (2 digits)
format("{M:z}", 2016, 6, 15) // -> "6" (zenkaku)
format("{M:z,2}", 2016, 6, 15) // -> "06" (zekaku 2 digits)

Formatting day

format("{D}", 2016, 6, 5) // -> "5"
format("{D:1}", 2016, 6, 5) // -> "5" (default)
format("{D:2}", 2016, 6, 5) // -> "05" (2 digits)
format("{D:z}", 2016, 6, 5) // -> "5" (zenkaku)
format("{D:z,2}", 2016, 6, 5) // -> "05" (zekaku 2 digits)

Formatting hour

format("{h}", 2016, 6, 5, 9, 2, 3) // -> "9"
format("{h:12}", 2016, 6, 5, 19, 2, 3) // -> 7 (12-hour am/pm format)
format("{h:1}", 2016, 6, 5, 9, 2, 3) // -> "9" (default)
format("{h:2}", 2016, 6, 5, 9, 2, 3) // -> "09" (2 digits)
format("{h:z}", 2016, 6, 5, 9, 2, 3) // -> "9" (zenkaku)
format("{h:z, 2}", 2016, 6, 5, 9, 2, 3) // -> "09" (zenkaku 2 digits)

Option 12 specifies the output to be 12-hour am/pm format; in other words, hour is divided by 12 and the remainder is output.

Formatting minute

format("{m}", 2016, 6, 5, 9, 2, 3) // -> "2"
format("{m:1}", 2016, 6, 5, 9, 2, 3) // -> "2" (default)
format("{m:2}", 2016, 6, 5, 9, 2, 3) // -> "02" (2 digits)
format("{m:z}", 2016, 6, 5, 9, 2, 3) // -> "2" (zenkaku)
format("{m:z,2}", 2016, 6, 5, 9, 2, 3) // -> "02" (zekaku 2 digits)

Formatting second

format("{s}", 2016, 6, 5, 9, 2, 3) // -> "3"
format("{s:1}", 2016, 6, 5, 9, 2, 3) // -> "3" (default)
format("{s:2}", 2016, 6, 5, 9, 2, 3) // -> "03" (2 digits)
format("{s:z}", 2016, 6, 5, 9, 2, 3) // -> "3" (zenkaku)
format("{s:z,2}", 2016, 6, 5, 9, 2, 3) // -> "03" (zekaku 2 digits)

Formatting am/pm

format("{a}", 2016, 6, 5, 9, 2, 3) // -> "午前" (__am__ in Japanese)
format("{a}", 2016, 6, 5, 19, 2, 3) // -> "午後" (__pm__ in Japanese)
format("{am/pm}", 2016, 6, 5, 9, 2, 3) // -> "am"
format("{a}", 2016, 6, 5, 19, 2, 3) // -> "pm" 
format("{am/pm}", 2016, 6, 5, 9, 2, 3) // -> "AM"
format("{a}", 2016, 6, 5, 19, 2, 3) // -> "PM" 

Formatting Gregorian year

format("{Y}", 2016, 6, 14) // -> "2016"

With "{Y}", Gregorian year is output as it is. Note: even in this case, month and day arguments are required.

Predfined formats

var date = new Date(2016, 6, 15, 17, 13, 4);

// f1 : "{G}{N}年{M}月{D}日({W})"
kanjidate.format(kanjidate.f1, 2016, 6, 12) // -> "平成28年6月12日(日)"

// f2 : "{G}{N}年{M}月{D}日"
kanjidate.format(kanjidate.f2, new Date(2016, 6-1, 12)) // -> "平成28年6月12日"

// f3 : "{G:a}{N}.{M}.{D}"
kanjidate.format(kanjidate.f3, "2016-06-12") // -> "H28.6.12"

// f4 : "{G}{N:2}年{M:2}月{D:2}日({W})"
kanjidate.format(kanjidate.f4, 2016, 6, 12) // -> "平成28年06月12日(日)"

// f5 : "{G}{N:2}年{M:2}月{D:2}日"
kanjidate.format(kanjidate.f5, 2016, 6, 12) // -> "平成28年06月12日"

// f6 : "{G:a}{N:2}.{M:2}.{D:2}"
kanjidate.format(kanjidate.f6, "2016-06-12") // -> "H28.06.12"

// f7 : "{G}{N}年{M}月{D}日({W}) {a}{h:12}時{m}分{s}秒"
kanjidate.format(kanjidate.f7, 2016, 6, 12, 14, 26, 8) // -> "平成28年6月12日(日) 午後2時26分8秒"

// f8 : "{G}{N:2}年{M:2}月{D:2}日({W}) {a}{h:12,2}時{m:2}分{s:2}秒"
kanjidate.format(kanjidate.f8, 2016, 6, 12, 14, 26, 8) // -> "平成28年06月12日(日) 午後02時26分08秒"

// f9 : "{G}{N}年{M}月{D}日({W}) {a}{h:12}時{m}分"
kanjidate.format(kanjidate.f9, 2016, 6, 12, 14, 26, 8) // -> "平成28年6月12日(日) 午後2時26分"

// f10 : "{G}{N:2}年{M:2}月{D:2}日({W}) {a}{h:12,2}時{m:2}分"
kanjidate.format(kanjidate.f10, 2016, 6, 12, 14, 26, 8) // -> "平成28年06月12日(日) 午後02時26分"

// f11 : "{G}{N:z}年{M:z}月{D:z}日"
kanjidate.format(kanjidate.f11, 2016, 6, 12, 14, 26, 8) // -> "平成28年6月12日"

// f12 : "{G}{N:z,2}年{M:z,2}月{D:z,2}日"
kanjidate.format(kanjidate.f12, 2016, 6, 12, 14, 26, 8) // -> "平成28年06月12日"

License

This software is released under the MIT License, see LICENSE.txt.

Readme

Keywords

Package Sidebar

Install

npm i kanjidate

Weekly Downloads

4,712

Version

1.2.8

License

MIT

Unpacked Size

122 kB

Total Files

13

Last publish

Collaborators

  • hangilc