Remixをpnpmで起動する方法をご紹介します。
インストール
pnpm dlx create-remix@latest
peerDependenciesのエラーが出るが無視すればOKです。そして、いつも通り自分の好みで設定すればいいです。
create-remixのbasics版
create-remixのpre-configured版
唯一の問題はpeerDependenciesのインストールが失敗したので、remix init
のスクリプトが自動的に走っていません。なので、次のステップも必要です。
プロジェクトの初期設定
方法は2つあります。
- 方法1 — pnpmでremixをglobalインストール
# remixをglobal install
pnpm i -g remix
# remix init
pnpm remix init
- 方法2 — npxを使う
npx remix init
それで pnpm dev
で起動できるようになります。
完了
pnpm dlx remix init
なら動かない問題があり、pnpm dlx
が npx
を比べると、やっぱり不便なところがありますね。