How do? I’m actually working on a little project that you might find interesting to inform your design decisions here, and @torbjorn.lager’s $0.02 are insightful. I honestly haven’t been following closely enough to have sufficient context to make any arguments here, but I can share with you what I’m up to and thinking if you find that useful.
So, because I have a background in education and AI, I’m building a typing intelligent tutor system at https://typingwiz.com, currently you’ll see it’s just got typing tests and then analysis components in there. It’s about a month old. The whole thing is built using VueJS as a framework. The UI components are complex, for example the typing test input isn’t just a form input, and the analysis speedometers are generated SVGs. So like torbjorn.lager was saying, it’s a complex end-user application adopting a JavaScript framework.
So why the JavaScript framework? Not only are the components complex and reused, but the in-page logic is updating and replacing parts of the interface within the page depending on user action. I need to say “hey, if this value changes go and update that UI over there”. I don’t want to rewrite all that complicated logic and component management. This isn’t so much a website as it is an application in a browser. I’ll add more reasons in the following paragraphs.
So where does Prolog fit in? Well if you look in your browsers local storage you’ll see that I’ve captured a lot of data about your typing when you took a test, which is what the analysis is based on. Tests are also captured over time. My intention is to use Prolog to implement the intelligent part of an “Intelligent Tutoring System”, that is to say it will use a rule-based AI to offer feedback, mark progress, and develop custom exercises for each individual learner catering to their own needs. So that means I will pass data to the Prolog and get data out of the Prolog, I don’t want it touching the UI at all.
So why client-side Prolog and not server-side Prolog? Well a server costs money. Currently the website is static and so free for me to host. I also don’t need to deal with user accounts, personal data, or any of that regulated overhead. By using Prolog in the browser I hope to get this thing to a point where it starts to generate income to pay for itself. Otherwise I’ll just kill the project, it’s business after all. If it does start to generate income then I’ll move the Prolog to server-side for better persistence and cross-device support. That’s another reason I don’t want the Prolog to touch the UI, it means I can move it from the client to a server.
What concerns me about using Prolog for this? Size down the wire. Bearing in mind I don’t know how big the files are that go down the wire, but this is the pressing concern for everything. The business success of this application will be made or broken by SEO, I need to appease the search engines to get to the top. I’m currently being penalized for large screen updates on loading that are caused by the navbar and footer being rendered by the JavaScript instead of in the HTML (it’s on my TODO list!), so load times are very important. Now I suspect I’ll be able to load the Prolog ITS asynchronously in the background because its functionality wont be required until some interaction takes place, but size and speed of loading is really important. A CDN could help here. I liked the way Tau-Prolog would let you choose to exclude certain libraries you didn’t need so you could further reduce the size. This is another reason for the JavaScript framework, it’s small so my application is running soon after the initial request.
I hope you find some value in this insight into how I, as an application developer, am thinking about WASM Prolog. I’m sure others may think differently but because we’re so few I thought I’d share.
p.s. I hate JavaScript and would much rather only write Prolog all day 
p.p.s. but I’d rather have a successful application than only write Prolog all day 