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 🙏

© 2026 – Pkg Stats / Ryan Hefner

cron-japanese-parser

v1.0.2

Published

Cron式を日本語の説明に変換するTypeScriptライブラリです。

Downloads

1

Readme

Cron Japanese Parser

Cron式を日本語の説明に変換するTypeScriptライブラリです。

機能

このライブラリは、標準的なCron式(5フィールド形式)を読みやすい日本語に変換します。

対応するCron式の形式

分 時 日 月 曜日
  • : 0-59
  • : 0-23
  • : 1-31
  • : 1-12
  • 曜日: 0-7 (0と7は日曜日)

対応する記法

  • * - すべての値
  • 数値 - 特定の値
  • 数値1-数値2 - 範囲指定
  • 数値1,数値2,数値3 - 複数値指定
  • */数値 - 間隔指定

インストール

npm install

使用方法

コマンドラインツールとして

npm start "0 9 * * 1-5"
# 出力: 平日の9時0分

npm start "*/15 * * * *"
# 出力: 15分おきに毎時毎日毎月

npm start "0 12 1 * *"
# 出力: 1日の12時0分

変換例

| Cron式 | 日本語出力 | |--------|------------| | 0 9 * * 1-5 | 平日の9時0分 | | */15 * * * * | 15分おきに毎時毎日毎月 | | 0 12 1 * * | 1日の12時0分 | | 30 14 * * 0 | 日曜日の14時30分 | | 0 0 1 1 * | 1月1日の0時0分 | | 0 */6 * * * | 6時間おき毎日毎月 | | 0 9,12,15 * * * | 9時、12時、15時0分 |

開発

テスト実行

npm test

テストUIの起動

npm run test:ui

ビルド

npm run build

API リファレンス

parseCron(cronExpression: string): string

Cron式全体を日本語に変換します。

パラメータ:

  • cronExpression: 5フィールドのCron式文字列

戻り値:

  • 日本語での説明文字列

例外:

  • Error: 無効なCron式の場合

個別フィールドパーサー

  • parseMinute(minute: string): string - 分フィールドを解析
  • parseHour(hour: string): string - 時フィールドを解析
  • parseDay(day: string): string - 日フィールドを解析
  • parseMonth(month: string): string - 月フィールドを解析
  • parseWeekday(weekday: string): string - 曜日フィールドを解析

ライセンス

MIT

技術スタック

  • TypeScript
  • Vitest (テスト)
  • Biome (リンター・フォーマッター)