Is it possible to create a connection to a redis server from the browser?

Is it possible to create a connection to a redis server from the browser? You can spin up a TCP connection in node using var client = net.connect(port, host);. I'm wondering if there is anyway to do this in the browser using Browserify or a native way to connect to the server?

Thanks!

There's no way to do this directly from the browser, but you can make TCP connections with a browser plugin.

Check this url for more info on this: http://news.ycombinator.com/item?id=3972368