This repository contains articles and books published on Zenn.
# Install dependencies
npm install zenn-cli
# Create new article
npx zenn new:article
# Create new book
npx zenn new:book
# Preview content at localhost:8000
npx zenn preview
.
├── articles/
│ └── *.md
├── books/
│ └── */
└── README.md
- Articles are managed as markdown files in the
articles
directory - Each article must include frontmatter configuration:
--- title: "" # Article title emoji: "😸" # One emoji character for thumbnail type: "tech" # tech/idea topics: [] # Up to 5 topics (e.g., ["react", "typescript"]) published: true # true/false for publishing ---
- Books are managed in the
books
directory - Each book requires:
config.yaml
- Book configurationcover.png
- Book cover image (500x700px recommended)- Chapter files (*.md)
The content of this repository is licensed under [license name].