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.

【Node.js】パスを確認する方法(備忘録)

Posted at

#プログラミング勉強日記
2021年3月17日
Node.jsの環境変数であるNODE_PATHの確認方法をまとめる。今回はすべてWindowsで行った。

#npmのPATHを確認する方法

コマンドプロンプト
$ npm bin -g

 コマンドを実行すると、ディレクトリがNode.jsをインストールしたときに自動的に設定される。そのパスが表示される。

#node_modulesのPATHを確認する方法
 Nodeのサーバーを立ち上げてから、nodeコマンドで下記を実行する。

> global.module.paths

#npmのPATHを通す方法

set NODE_PATH=C:\Users\フォルダ…

#参考文献
【Express】環境変数とは?PATHを通すとは?けっきょく南極ローカルインストール!(Herokuコマンドでローカル起動)
Node.jsのPath(パス)を確認する方法【初心者向け】

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?