Study

cannot find module "jade"

zombie45 2014. 3. 29. 16:02

Node.js

when using express and jade

if {

 cannot find module "jade"

}

unlink both express and jade

npm install express

npm install jade

they need to be in same node_module folder

or both in global "-g"

if global {

  npm link express

  npm link jade

  check if they are in same base folder

}

wala!

반응형