2020年7月26日日曜日

CentOS 8.1にPrettierをインストールする

PrettierでJavascriptやHTMLなどのコードを整形する事ができます。

〇インストール手順
以下のコマンドを実行します。
# install node.js
curl -sL https://rpm.nodesource.com/setup_12.x | sudo bash -

sudo dnf -y install nodejs

# install yarn
curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo

sudo yum -y install yarn

# install prettier
sudo yarn global add prettier

〇テスト実行
$ echo '<!DOCTYPE html><html lang="ja"><head><meta charset="UTF-8"><title>sample</title></head><body>sample</body></html>' | prettier --stdin-filepath test.html
<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="UTF-8" />
    <title>sample</title>
  </head>
  <body>
    sample
  </body>
</html>

〇関連情報
・プロジェクトgithubリポジトリ
https://github.com/prettier/prettier

0 件のコメント:

コメントを投稿