WebAssembly
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) (Created page with "{{FormatInfo |formattype=Languages |subcat=Programming Languages }} '''WebAssembly''' is a programming language under development intended to be a low-level language for web a...") |
Dan Tobias (Talk | contribs) |
||
(One intermediate revision by one user not shown) | |||
Line 2: | Line 2: | ||
|formattype=Languages | |formattype=Languages | ||
|subcat=Programming Languages | |subcat=Programming Languages | ||
+ | |released=2018 | ||
}} | }} | ||
− | '''WebAssembly''' is a programming language | + | '''WebAssembly''' is a programming language that released its first public draft spec in 2018, intended to be a low-level language for web applications, executing cross-platform at near-native speed on each system. It can in turn be the code output by compilers (as a form of [[bytecode]]), allowing development of web applications in any number of other languages. This is seen as a more robust solution to what has, thus far, generally been accomplished with [[JavaScript]] and its elaborations such as asm.js. |
== Links == | == Links == | ||
+ | * [http://webassembly.github.io/spec/ Spec] | ||
+ | * [https://github.com/WebAssembly/spec/ GitHub] | ||
* [https://www.w3.org/community/webassembly/ W3C community] | * [https://www.w3.org/community/webassembly/ W3C community] | ||
* [http://arstechnica.com/information-technology/2015/06/the-web-is-getting-its-bytecode-webassembly/ The Web is getting its bytecode: WebAssembly] | * [http://arstechnica.com/information-technology/2015/06/the-web-is-getting-its-bytecode-webassembly/ The Web is getting its bytecode: WebAssembly] | ||
* [https://groups.google.com/forum/#!topic/emscripten-discuss/k-egXO7AkJY Some discussion] | * [https://groups.google.com/forum/#!topic/emscripten-discuss/k-egXO7AkJY Some discussion] | ||
* [https://brendaneich.com/2015/06/from-asm-js-to-webassembly/ From asm.js to WebAssembly] | * [https://brendaneich.com/2015/06/from-asm-js-to-webassembly/ From asm.js to WebAssembly] |
Latest revision as of 04:06, 16 February 2018
WebAssembly is a programming language that released its first public draft spec in 2018, intended to be a low-level language for web applications, executing cross-platform at near-native speed on each system. It can in turn be the code output by compilers (as a form of bytecode), allowing development of web applications in any number of other languages. This is seen as a more robust solution to what has, thus far, generally been accomplished with JavaScript and its elaborations such as asm.js.