Node error reset on ansi module

I want to check out Mike Bostock Rivers , but I ran into an error with Node.js. npm install gives me:

 module.js:340 throw err; ^ Error: Cannot find module 'ansi' 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) at Object.<anonymous> (/usr/local/Cellar/node/0.10.0/lib/node_modules/npm/node_modules/npmlog/log.js:5:12) at Module._compile (module.js:456:26) at Object.Module._extensions..js (module.js:474:10) at Module.load (module.js:356:32) at Function.Module._load (module.js:312:12) at Module.require (module.js:364:17) 

Any pointers? Or can any of the previous questions that I skipped indicate a solution?

+8
source share
2 answers

If you run RH CentOS from Fedore, reinstall

yum reinstall nodejs-ansi.noarch

This fixed my similar issue

+1
source share

You can run:

 npm install ansi -g 

to make ansi available worldwide (you may need to use sudo )

-3
source share

All Articles