LoginSignup
3
3

More than 5 years have passed since last update.

情弱なのでCannot find module って怒られる

Last updated at Posted at 2015-04-08

gulpfile.js に require("DIR/MODULE") と記述し、gulp を実行したところ下記のように怒られた。

module.js:340
throw err;
^
Error: Cannot find module 'DIR/MODULE'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:364:17)
at require (module.js:380:17)
...

DIR/MODULE が無いと怒られて実行できない。
どうやら NODE_PATH が指定していないと対象のファイルを見つけられないよう。
env NODE_PATH=./ を設定するか
NODE_PATH=./ gulp みたいに指定して実行する。

gulp というより node.js を勉強してね

3
3
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
3
3