2020年12月29日火曜日

CentOS 8-Streamに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 件のコメント:

コメントを投稿