0
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 1 year has passed since last update.

express.jsインストール後、expressコマンドが使えない。[-bash: express: command not found]

Last updated at Posted at 2022-09-10

express.jsをインストール

console
npm i express-generator -g

スクリーンショット 2022-09-10 13.58.44のコピー.png
インストールは出来たけど、バージョン確認のexpressコマンドが効かない

console
express --version

に対して

console
-bash: express: command not found

このコマンドだとバージョン確認ができる。

console
npm view express version
console
4.18.1

次にアプリケーション雛形を作成したい。

console
express --no-view server

に対して

console
-bash: express: command not found

スクリーンショット 2022-09-10 14.33.31.png

????

答えはパスが通っていなかった。
npmのpathを確認する。

console
npm bin -g 

私の場合

console
/Users/ユーザー名/.npm-global/bin

これを.bash_profile に設定する。

console
vim ~/.bash_profile
vim ~/.bash_profile
#expressの環境変数
export PATH=/Users/ユーザー名/.npm-global/bin:$PATH

設定の読み込み。

console
source ~/.bash_profile

再度、expressコマンドを入力

console
express --version
console
4.16.1

スクリーンショット 2022-09-10 14.24.16.png
できた:sob:

中途半端に「npm view express versionで確認が取れた」と思い込んでいたため、パスが通っていないとは思ってもいなかったです:scream:

0
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
0
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?