2
4

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 5 years have passed since last update.

npmでglobalに入れているパッケージを確認する

Posted at

制作環境を人に伝えるときなど、どういうものが入っていたかと確認したくなるときがあります。

YeomanやGulpなど、制作環境として普遍的に使うものに関してはnpm install packagename -gとする派です。
しかし、ユーザーディレクトリ直下でnpm lsと入力しても

/Users/woopsdez
└── (empty)

となってしまい、確認ができませんでした。node.jsに詳しい人が教えてくれたのですが、

npm ls -g

とオプションでグローバルを指定しないといけない模様。
※ 言われるままにパッケージ入れてると表示されるまでけっこう重かったりします。

まとめ

npm lsだと、現在地のpackage.jsonを探してしまうようです。 npm ls -gとしましょう。

2
4
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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?