Cannot find module 'coffee-script'

百般思念 提交于 2019-11-30 01:18:28

Update your package.json file

"coffee-script": "~1.6.3"

on "devDependencies" and update the npm again

npm update

the same issue fixed for me

Had similar problem when using grunt, I've removed

node_modules 

folder from my root folder and run

npm install

That fixed my problem

You need to check NODE_PATH variable against the location given by npm list -g coffee-script.
If empty, npm install -g coffee-script.

This did the trick for me

npm install --save-dev coffee-script

using node v0.10.31

You need to check NODE_PATH variable and if it is empty then set it with instructions given here http://www.davidarno.org/2012/02/09/writing-a-node.js-module-in-coffeescript/

knb

This is a question from 2012. Now it's nearly 2015, and in the meantime, there is now another, new approach for a differerent variation of the problem caused by breaking changes introduced into node and coffeescript.

For coffeescript > v1.7 you must now call

var coffee = require('coffee-script').register();

instead of

var coffee = require('coffee-script');

See this answer https://stackoverflow.com/a/21585379 to this question: How to properly set up Coffeescript with Node.js

https://github.com/fgnass/node-dev#settings Note: If you want to use coffee-script < 1.7 you have to change the setting to {"coffee": "coffee-script"}.

so update your coffe-script or config your setting

IT happened to me too, and removing node_module folder and npm install to re-create it didn't work, so I installed the required packages separately like:

npm install coffee-script

after that it required one more package and hopefully it was the last one :D

iamMSharma

With 2 simple steps, I was able to fix this issue

  1. npm cache clean
  2. npm install

Hope this helps!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!