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

@sugitlab/resumake

v1.1.3

Published

Generate beautiful PDF resumes from Markdown

Readme

resumake

resume.md を読み込み、美しい職務経歴書 PDF を生成する Node.js CLI ツール。

必要環境

  • Node.js 18 以上

インストール

npm install -g @sugitlab/resumake

またはインストールなしで直接実行:

npx @sugitlab/resumake

使い方

1. resume.md を用意する

カレントディレクトリに resume.md を配置します。

---
title: 履歴書・職務経歴書
name: 山田 太郎
furigana: やまだ たろう
englishName: Taro Yamada
photo: ./photo.jpg
updatedAt: 2026年4月30日
birthDate: 1996年4月1日
age: 30
address: 〒100-0001 東京都千代田区千代田1-1
phone: 090-1234-5678
email: [email protected]
---

## 職務要約

Webアプリケーション開発を中心に5年間のエンジニア経験。

## 職務経歴

```timeline
2019年4月〜2021年3月 | 株式会社Sample | フロントエンドエンジニア | Vue.jsを用いた管理画面の開発
2021年4月〜現在 | 株式会社Example | ソフトウェアエンジニア | React / TypeScript を用いた SPA の設計・開発
```

## スキル

| カテゴリ | 技術 |
|------|------|
| 言語 | TypeScript, JavaScript, Python |
| フロントエンド | React, Vue.js, Next.js |

## リンク

- [ポートフォリオ](https://example.com)
- [GitHub](https://github.com/example)

## 学歴

```timeline
2015年4月 | ○○大学 情報工学部 | 入学
2019年3月 | ○○大学 情報工学部 | 卒業
```

resume.md の先頭に frontmatter を書くと、PDF の冒頭に履歴書形式の基本情報欄が表組みでレンダリングされます。

| キー | 表示項目 | 例 | |---|---|---| | title | 冒頭タイトル | 履歴書・職務経歴書 | | name | 氏名 | 山田 太郎 | | furigana | ふりがな | やまだ たろう | | englishName | 英字名 | Taro Yamada | | photo | 顔写真 | ./photo.jpg | | updatedAt | 更新日 | 2026年4月30日 | | birthDate | 生年月日 | 1996年4月1日 | | age | 満年齢 | 30 | | address | 現住所 | 〒100-0001 東京都千代田区千代田1-1 | | phone | 電話番号 | 090-1234-5678 | | email | メールアドレス | [email protected] |

職歴や学歴を時系列表示したい場合は、timeline コードフェンスを使います。各行は 年月 | タイトル | 補足 | 説明 の順で書き、補足と説明は省略できます。

```timeline
2019年4月〜2021年3月 | 株式会社Sample | フロントエンドエンジニア | Vue.jsを用いた管理画面の開発
2021年4月〜現在 | 株式会社Example | ソフトウェアエンジニア | React / TypeScript を用いた SPA の設計・開発
```

Markdownのリンクは青色・下線付きで表示されます。http:// または https:// の外部リンクには文末に外部リンクアイコンが付きます。

## リンク

- [ポートフォリオ](https://example.com)
- [GitHub](https://github.com/example)

2. PDF を生成する

npx @sugitlab/resumake

カレントディレクトリの resume.md を読み込み、resume.pdf が生成されます。

Markdownファイルを指定する場合:

npx @sugitlab/resumake docs/resume-ja.md

出力先を指定する場合:

npx @sugitlab/resumake docs/resume-ja.md --output dist/resume.pdf

ヘルプを表示する場合:

npx @sugitlab/resumake --help

サンプルMarkdownを生成する場合:

npx @sugitlab/resumake --init

実行したディレクトリに resume-sample.md が生成されます。既に同名ファイルがある場合は上書きせずに終了します。

カラーテーマ

--theme <name> フラグでテーマを指定できます。

npx @sugitlab/resumake --theme asagi

短いオプション名も使えます。

npx @sugitlab/resumake resume.md -t asagi -o resume-asagi.pdf

| テーマ名 | イメージ | 出力ファイル名 | |---|---|---| | (なし) | モノクロ・ATS対応 | resume.pdf | | asagi | 浅葱(青緑) | resume-asagi.pdf | | sakura | 桜(ピンク) | resume-sakura.pdf | | wakakusa | 若草(緑) | resume-wakakusa.pdf | | fuji | 藤(紫) | resume-fuji.pdf | | kohaku | 琥珀(金茶) | resume-kohaku.pdf |

全テーマを一括生成する例

for theme in asagi sakura wakakusa fuji kohaku; do
  npx @sugitlab/resumake --theme $theme
done

PDF の仕様

  • 用紙: A4
  • 余白: 上下 20mm・左右 18mm
  • フォント: Noto Sans JP(Google Fonts)
  • デフォルト: モノクロ・ATS スキャン対応レイアウト
  • ヘッダー: frontmatter の updatedAt を右上に表示
  • フッター: 中央にページ番号を表示

エラーメッセージ

| メッセージ | 原因と対処 | |---|---| | Error: resume.md が見つかりません。 | カレントディレクトリに resume.md がない。ファイルを配置してから再実行。 | | Error: 不明なテーマ "xxx" が指定されました。 | --theme に存在しないテーマ名を指定した。使用可能なテーマ名を確認して再実行。 |

ライセンス

MIT