Skip to content

Commit 620aa2e

Browse files
authored
Fix quote marks (#4394)
1 parent c2d806a commit 620aa2e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/content/en/2025/capabilities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ The Media Session API experienced a small decline. Mobile adoption dropped from
224224

225225
This capability allows users to [install a Progressive Web App (PWA) as an app-like experience on their device](https://developer.chrome.com/blog/how_chrome_helps_users_install_the_apps_they_value).
226226

227-
When a site meets installability criteria, Chrome and other browsers may show an install badge (for example, an icon in the address bar or an Install menu option) that lets users add the app to their home screen or install it as a standalone app, while it also supports manual installation flows for sites that dont meet those criteria. Chrome further experiments with ML-driven install prompts on Android to help users discover installable experiences.
227+
When a site meets installability criteria, Chrome and other browsers may show an install badge (for example, an icon in the address bar or an "Install" menu option) that lets users add the app to their home screen or install it as a standalone app, while it also supports manual installation flows for sites that don't meet those criteria. Chrome further experiments with ML-driven install prompts on Android to help users discover installable experiences.
228228

229229
{{ figure_markup(
230230
image="add-to-home-screen.png",

src/content/en/2025/webassembly.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#See https://github.com/HTTPArchive/almanac.httparchive.org/wiki/Authors'-Guide#metadata-to-add-at-the-top-of-your-chapters
33
title: WebAssembly
44
description: WebAssembly chapter of the 2025 Web Almanac covering usage, languages, and post-MVP features.
5-
hero_alt: Hero image of Web Almanac characters performing scientific experiments on various code symbols resulting in 1's and 0's coming out the other end.
5+
hero_alt: Hero image of Web Almanac characters performing scientific experiments on various code symbols resulting in 1s and 0s coming out the other end.
66
authors: [nimeshgit]
77
reviewers: [nrllh, tunetheweb]
88
analysts: [nimeshgit]
@@ -168,7 +168,7 @@ Small modules of WebAssembly often found using AssemblyScript or Rust and Large
168168
)
169169
}}
170170

171-
These WebAssembly modules differ considerably in size, with the smallest being just a few kilobytes, and the largest one is 228.102 MB in desktops client and 166.415 MB for mobile client.
171+
These WebAssembly modules differ considerably in size, with the smallest being just a few kilobytes, and the largest one is 228.102 MB in desktop's client and 166.415 MB for mobile client.
172172

173173
{{ figure_markup(
174174
caption="Largest WebAssembly file detected.",
@@ -207,15 +207,15 @@ Let's look a bit more into the top three libraries:
207207

208208
WebAssembly can use various languages and using toolchains It can be compiled in binary format to server browser and desktop applications. It can carry much of the information in the source (programming language, application structure, variable names).
209209

210-
Each WebAssembly has import and or export components, Most WebAssembly toolchains create a small amount of JavaScript code, for the purposes of binding, making it easier to integrate components into JavaScript applications. These bindings often have recognisable function names which are present in the components exports or imports, giving a reliable mechanism for identifying the language that was used to author the component.
210+
Each WebAssembly has import and or export components, Most WebAssembly toolchains create a small amount of JavaScript code, for the purposes of 'binding', making it easier to integrate components into JavaScript applications. These bindings often have recognisable function names which are present in the components exports or imports, giving a reliable mechanism for identifying the language that was used to author the component.
211211

212212
If WASM has not used obfuscation and or other techniques that are stripped down while building deliverable then we can use the rust libraries and WebAssembly Binary Toolkit (WABT) to understand the source programming language.
213213

214-
We enhanced the wasm-stats project and created tool <a hreflang="en" href="https://github.com/nimeshvk/almanac-wasm">`almanac-wasm`</a> that helps to download wasm file from the 3rd party server with preferred request parameters for example user-agent, compression method etc, validates the downloaded wasm file and with rust library and WABT (wasm2wat), It finds the authors language and populates wasm statistics along with language.
214+
We enhanced the wasm-stats project and created tool <a hreflang="en" href="https://github.com/nimeshvk/almanac-wasm">`almanac-wasm`</a> that helps to download wasm file from the 3rd party server with preferred request parameters for example user-agent, compression method etc, validates the downloaded wasm file and with rust library and WABT (wasm2wat), It finds the author's language and populates wasm statistics along with language.
215215

216216
For example, [wasm-bindgen](https://crates.io/crates/wasm-bindgen) is a suite of tools that helps to generate high level code Rust-compiled WebAssembly (Wasm) component and JavaScript with name as "wbindgen" so If We import the component from WebAssembly and find "wbindgen" then there is clearly indication that component in WebAssembly was written in Rust language.
217217

218-
Like wise, We have researched and found various language indicators inside WebAssemblys different components with the tool.
218+
Like wise, We have researched and found various language indicators inside WebAssembly's different components with the tool.
219219

220220
{{ figure_markup(
221221
image="language-usage.png",
@@ -231,7 +231,7 @@ Like wise, We have researched and found various language indicators inside WebAs
231231

232232
We have found the .Net / Mono eco system based languages (including Blazor) reserves the first position for the language used in WebAssembly for desktop clients with 40.5% and for mobile clients with 39.8%
233233

234-
However 41.1% clients in desktop and 41.6% clients in mobile have language "Unknown" that means We could not find the authors (source) language because of missing language indicators or WebAssembly is stripped with the obfuscation or other techniques; These techniques are used to reduce the size, enable privacy/security features or to optimize the performance of the WebAssembly by the modern compilers.
234+
However 41.1% clients in desktop and 41.6% clients in mobile have language "Unknown" that means We could not find the author's (source) language because of missing language indicators or WebAssembly is stripped with the obfuscation or other techniques; These techniques are used to reduce the size, enable privacy/security features or to optimize the performance of the WebAssembly by the modern compilers.
235235

236236
## WebAssembly features
237237

@@ -259,4 +259,4 @@ With respect to the total extension usage in year 2021, It is observed that tota
259259

260260
There is a significant increase in the number of webpages using this technology for serverless, containerization, machine learning components and plug-n-play types of applications. The future of WebAssembly could be as a niche web technology, but as an entirely mainstream runtime on a wide range of other platforms. WebAssembly runtime (multi-language, lightweight, secure) are making it a popular choice for a wider range of non-browser applications for agnostic platforms.
261261

262-
Despite being a niche technology, WebAssembly is already adding value to the web. There are a number of web applications that benefit greatly from this technology. However, web applications are often not visible to the crawl which forms the basis of this study.
262+
Despite being a niche technology, WebAssembly is already adding value to the web. There are a number of web applications that benefit greatly from this technology. However, web applications are often not visible to the 'crawl' which forms the basis of this study.

0 commit comments

Comments
 (0)