Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kurone-kito/shokurekisho-docx-cli
- Owner: kurone-kito
- License: mit
- Created: 2019-10-28T00:34:35.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-11T18:38:38.000Z (about 1 month ago)
- Last Synced: 2024-10-17T01:38:17.485Z (about 1 month ago)
- Topics: cli-app, docx-generator, json-resume
- Language: TypeScript
- Homepage:
- Size: 327 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.ja.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.ja.md
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 informationCommands:
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