Is it possible to make redis work without having a backend? Would it be possible for redis to work using only the front-end, using some famework or well-known library like Angular, React, Vue.js? No backend required?
Redis protocol (RESP2/3) is not http
based therefor it can’t be accesses directly from the browser.
But, you can run it with a module that will expose a REST API like GitHub - RedisLabsModules/RedisREST: REST module for Redis
1 Like