2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PlantUML 環境構築 VSCode

Last updated at Posted at 2021-10-10

##前提

PlantUMLのインストール

  • Visual Studio Codeを開く
  • 画面左部Extensionsを押下し、検索フォームに「PlantUML」と入力する
  • 検索結果から「PlantUML」選択しインストールする。

VSCode-PlantUML1.png

VSCode-PlantUML2.png

シーケンス図の作成

  • Visual Studio Codeを開く
  • sample.pu で新規ファイルを作成する。
  • 以下の内容をsample.puにコピーする
sample.pu
@startuml
title シーケンス図
participant front
participant api

front -> api:リクエスト
api --> front:レスポンス
@enduml

シーケンス図のプレビュー

  • sample.puファイルを選択している状態で
  • ”Alt + D”を同時押ししプレビューを表示する

VSCode-PlantUML3.png

画像ファイルとして出力

  • "Ctrl + Shift + P" or F1 でコマンドパレットを開く
  • PlantUML: Export Current Diagram と入力する
  • png, svg, eps, pdf, vdx, xmi, scxml, html から出力形式を選択する
2
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?