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

@kurone-kito/shokurekisho-docx-cli

v0.2.0

Published

Generate a Word docx file of Japanese-style resume (職務経歴書) from JSON Resume

Downloads

11

Readme

📄 <職歴書> - shokurekisho-docx-cli

npm version

JSON Resume 形式のプロフィール情報から、日本のお堅い系企業ウケしそうな様式の職務経歴書を docx ファイル形式で生成します。
Generate a Word docx file of Japanese-style resume (職務経歴書) from JSON Resume for cli

Requires

Node.js >= v13 (Strongly recommended)

or

Node.js >= v8.10 and < v13, and a latest full-icu package

Usage

on Node.js >= v13

npm install --global @kurone-kito/shokurekisho-docx-cli
shokurekisho build resume.json resume.docx

on Node.js >= v8.10 and < v13

npm install --global @kurone-kito/shokurekisho-docx-cli full-icu
NODE_ICU_DATA=$(node-full-icu-path) shokurekisho build resume.json resume.docx

Help

$ hokurekisho --help
Usage: shokurekisho [options] [command]

Options:
  -V, --version                   output the version number
  -h, --help                      output usage information

Commands:
  build|b <source> [destination]  Generate docx of resume from JSON.

Extended JSON-Resume

標準のJSON Resume 形式に加え、拡張した形式を読み込むことができます。
In addition to the standard JSON Resume format, the extended format can be read.

{
  "projects": [
    {
      ...
      "env": {
        "os": ["Windows XP", "AIX"],
        "language": ["PL/I", "COBOL"],
        "platforms": ["Excel 2000"]
      }
    }
  ],
  "skills": [
    {
      ...
      "tags": "language"
    },
    {
      ...
      "tags": ["tools", "foobar"]
    }
  ]
}

License

MIT