Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kurone-kito/shokurekisho-docx-cli

📄 Generate a Word docx file of Japanese-style resume (職務経歴書) from JSON Resume; since 2019.10
https://github.com/kurone-kito/shokurekisho-docx-cli

cli-app docx-generator json-resume

Last synced: 24 days ago
JSON representation

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

Awesome Lists containing this project

README

        

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

[![npm version](https://badge.fury.io/js/%40kurone-kito%2Fshokurekisho-docx-cli.svg)](https://badge.fury.io/js/%40kurone-kito%2Fshokurekisho-docx-cli)

[**JSON Resume** 形式](https://jsonresume.org)のプロフィール情報から、日本のお堅い系企業ウケしそうな様式の職務経歴書を 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](https://github.com/unicode-org/full-icu-npm)

## Usage

### on Node.js >= v13

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

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

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

## Help

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

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

Commands:
build|b [destination] Generate docx of resume from JSON.
```

### Extended JSON-Resume

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

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

## License

MIT