2
1

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.

amplify cliはnode.js version 10以上が必要

Posted at

現象

amplify cliをインストール(npm install -g @aws-amplify/cli )して、いざamplifyを使おうとしたら

amplify configure
/home/****/.nvm/versions/node/v8.16.2/lib/node_modules/@aws-amplify/cli/lib/plugin-manager.js:47
    catch {
          ^

SyntaxError: Unexpected token {
    at Generator.next (<anonymous>)
    at Object.Module._extensions..js (module.js:664:10)

とエラーメッセージが出て利用できなかった。
amplify initなど他のすべてのコマンドで失敗した。

解決策

単純な話で、AWS amplify cliのgithubに書いてあるようにnode.jsのバージョンが10以上でないとamplify cliは使えない。エラーメッセージを見ると利用しているバージョンはv8.16.2だとわかる。10以上にアップデートしたら使えた。

教訓

対応バージョンやインストール時のエラーメッセージはしっかり読まないといけない。

2
1
0

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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?