Is there any way to remove/delete an entry by key, using Node_redis? I can't see any such option from the docs..
Here you can see what redis commands are work in this library node_redis github
As you can see "del" command is in the list.
And this command allow you delete keys from selected db as Jonatan answered.
If I remember things correctly, del should do it.
you can use like this:,
redis.del('SampleKey');