I must develop a Web App with HTML 5 and Javascript for client side. But i need to use the funcionalities that provides a client's native library (.dll/.so) to process some data on it´s machine with C/C++.
I like to write my own API in Javascript to access native library, like NodeJS's addons define, but those addons only are accessible from NodeJS (server-side). Also there is a well established NPAPI but seems that Google's PPAPI wants to replace it: I could not decide on any of them.
Is there something similar to NodeJS's addons for client-side that allow me to focus only on C++, Javascript and HTML 5?
Thanks.