Sneak Peek at WebAssembly Studio
hacks.mozilla.org
Sneak Peek at WebAssembly Studio
1–10 of 103 posts
Re: Sneak Peek at WebAssembly Studio
#2Re: Sneak Peek at WebAssembly Studio
#3I came back, after RTFA, to say that I'm pleasantly surprised that it runs completely in the web browser.
Re: Sneak Peek at WebAssembly Studio
#4I've been through many programming languages. C# might be my favourite and F# always seemed like it would be if I took the time to learn it properly but for quite a few years now, JS has simply had such gravitational pull that I felt like I had to go with it. And I have to say, I've learned to not only like but to love it. Save for the mutable data structures that it supplies per default, it offers solid functional programming features and the culture embraces those. Still, there are times where I wish I could use something else.
NPM features quite a few packages written in other languages, with JS "binaries" available which I think is pretty neat. To me, packages seem like a much nicer place to choose language rather than, say, per microservice. A parser might be much cleaner in some pure functional language while some I/O library might work better in something else. But there is still only a subset of languages that compile to JS and the quality varies. But with LLVM supporting WebAssembly, I can see a future where it truly becomes the global binary format. Which would allow you to either write a combination of desktop, mobile and web apps (plus backend) in any language of your choice. Or, easliy write different packages in different languages and combine them into one app.
Re: Sneak Peek at WebAssembly Studio
#5I came here to complain about it being yet another standalone app. I came back, after RTFA, to say that I'm pleasantly surprised that it runs completely in the web browser. https://webassembly.studio/
Re: Sneak Peek at WebAssembly Studio
#6Re: Sneak Peek at WebAssembly Studio
#7Re: Sneak Peek at WebAssembly Studio
#8not bad, but four(4) config files for a single code file?
The number of files is exactly the same as if you weren't using webassembly, other than the one rust/c source file.
Re: Sneak Peek at WebAssembly Studio
#9Re: Sneak Peek at WebAssembly Studio
#10I have to say I am pretty excited about WebAssembly. I've been through many programming languages. C# might be my favourite and F# always seemed like it would be if I took the time to learn it properly but for quite a few years now, JS has simply had such gravitational pull that I felt like I had to go with it. And I have to say, I've learned to not only like but to love it. Save for the mutable data structures that…