Problems starting npm install redis. Received error:
npm WARN install Refusing to install redis as a dependency of itself
When I tried installing hiredis, it seemed to install just fine, however, when I tried to run any of the examples that they failed, the required "redis" file was not found.
I finally solved this by installing redis global or:
npm install -g redis
Has anyone else seen this?
source
share