I have package.json in which some modules must be installed globally, below is the part that I added below the dependencies
"scripts": { "preinstall": "npm i -g supervisor", "preinstall": "npm i -g forever" }
But when I ran npm install, I got an error as below
npm WARN package.json aaa@0.0.0 No README.md file found! npm WARN cannot run in wd aaa@0.0.0 npm i -g forever (wd=/home/administrator/AAA)
All modules that must be installed locally are installed, but only a gloomy installation throws an error. I'm stuck here, any help would be greatly appreciated.
Amanda G May 6 '13 at 7:10 2013-05-06 07:10
source share