Tech stack MVC to connect to KDB database ?

Hello, 
I am currently trying to understand how I could use KDB with a front end interface hosted by a server online . 
Apart python, what are the other option that can be used to build a front end interface that can connect to KDB database ?

Regards

Is this what you’re looking for? https://code.kx.com/q/interfaces/

Hi David,

If you start KDB with a port argument it will automatically function as a web server. It’s easy to connect a web socket or handle GET/POST requests, although the approach is delightfully unconventional.

This is great place to start:
http://code.kx.com/q4m3/11_IO/#117-http-and-web-sockets

Thanks,

Will