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

https://github.com/jonghyo/zenn.dev

zenn.dev documents
https://github.com/jonghyo/zenn.dev

blog documents tech

Last synced: 5 months ago
JSON representation

zenn.dev documents

Awesome Lists containing this project

README

          

# zenn.dev [![build status](https://github.com/jonghyo/zenn.dev/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/jonghyo/zenn.dev/actions/workflows/lint.yml)

My zenn.dev articles is here.

Zenn

## Zenn latest posts

- [Raycastのおすすめ設定:Alfred・Clipyユーザーに試してほしい!](https://zenn.dev/jonghyo/articles/raycast-settings)
- [Next.js MiddlewareはNode.js runtimeでも使える!【誤解を解消&今後の展望】](https://zenn.dev/jonghyo/articles/nextjs-middleware)
- [Zennの記事をGitHub連携でカッチリ管理するおすすめ設定](https://zenn.dev/jonghyo/articles/zenn-github-repo)

## Local Development

### Install dependencies

```bash
npm ci
```

### Add articles

```bash
npx zenn new:article --slug 記事のスラッグ --title タイトル --type tech --emoji ✨
```

- `--slag`: 記事のスラッグを指定する。`articles/[slug].md`でファイルが生成される。詳細は[コチラ](https://zenn.dev/zenn/articles/what-is-slug)
- `--title`: 記事のタイトル
- `--type`: 記事のタイプ。 `tech` | `idea`
- `--emoji`: アイキャッチ用の絵文字を1つ指定

### Add book

```bash
npx zenn new:book
```

### preview

```bash
npm start
```