A minimal in-memory key-value store built in Node.js using TCP sockets — inspired by Redis.
Supports basic commands: SET
, GET
, and DEL
.
- Store values with
SET key value
- Retrieve values with
GET key
- Delete values with
DEL key
- Simple TCP protocol