Having problems running npm install redis. Got error:
npm WARN install Refusing to install redis as a dependency of itself
When I tried to install hiredis it would appear to install just fine however, when I tried to run any of the examples they would fail with the required file "redis" not found.
I did finally solve this by installing redis global or:
npm install -g redis
Has anyone else seen this?
Ensure your app package.json
name is not redis.
Good package.json
{
"name": "redis-app"
//...
}
Bad package.json
{
"name": "redis"
//...
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With