Files
Sylvestre Ledru 5c22a5b3d6 Add interactive WASM playground for uutils coreutils
A browser-based terminal that runs real Rust coreutils compiled to
WebAssembly (wasm32-wasip1) using @bjorn3/browser_wasi_shim.

Features:
- xterm.js terminal with command history and line editing
- Pipe support (cmd1 | cmd2 | cmd3), file redirects (>)
- Persistent virtual filesystem across commands
- cd/pwd builtins with virtual working directory
- Locale support (locale builtin + selector)
- UTF-8/multibyte correct output (raw ConsoleStdout, fixed args_sizes_get)
- Click-to-run example buttons
- Inline wasm_example shortcode for blog posts
2026-04-03 21:47:38 +02:00

25 lines
973 B
HTML

{%- extends "base.html" -%}
{%- block title -%}
{{ page.title }} | uutils
{%- endblock title -%}
{%- block main -%}
<h1 class="title">{{ page.title }}</h1>
<div class="links">
<a href="https://github.com/uutils/{{page.title}}">Repository</a>
{%- if not page.extra.wip %}
<a href="/{{page.title}}/docs/installation.html">Installation</a>
{%- endif %}
<a href="https://github.com/uutils/{{page.title}}/issues">Issues</a>
<a href="https://github.com/uutils/{{page.title}}/issues?q=is%3Aissue%20state%3Aopen%20label%3A%22good%20first%20issue%22">Good first issues</a>
{%- if not page.extra.wip %}
<a href="/{{page.title}}/docs">Documentation</a>
{%- endif %}
<a href="https://github.com/uutils/{{page.title}}/releases">Releases</a>
{% if page.title == "coreutils" %}<a href="/playground">Try it!</a>{% endif %}
</div>
{{ page.content | safe }}
{%- endblock main -%}