Node_redis - how to remove a key?

You can del use like this:

redis.del('SampleKey');

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.