본문으로 건너뛰기

Installing & Running the script

npm i -D jsdoc-to-mdx# oryarn add -D jsdoc-to-mdx

This will install jsdoc-to-mdx in your node_modules binary, so you can execute it like:

npx jsdoc-to-mdx -c config.json

Or, you can execute in "scripts" in package.json

"scripts": {  "docs": "jsdoc-to-mdx -c config.json"}
npm run docs