<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>tiddlywiki &amp;mdash; Nat Knight</title>
    <link>http://natknight.xyz/tag:tiddlywiki</link>
    <description>Reflections, diversions, and opinions from a progressive ex-physicist programmer dad with a sore back.</description>
    <pubDate>Sat, 23 May 2026 15:53:52 -0700</pubDate>
    <item>
      <title>A TiddlyWiki Server in Rust</title>
      <link>http://natknight.xyz/a-tiddlywiki-server-in-rust</link>
      <description>&lt;![CDATA[#tiddlywiki #rust #selfhosting #release&#xA;&#xA;I just published the first (v0.1.0) release of tiddly-wiki-server, which implements the TiddlyWiki WebServer API in Rust using Axum, SerDe, and TiddlyWiki.&#xA;&#xA;!--more--&#xA;&#xA;Motivation&#xA;&#xA;One might ask why a new TiddlyWiki server is necessary, since&#xA;&#xA;TiddlyWiki5 includes a first-party NodeJS web server, and&#xA;one of TiddlyWiki&#39;s beautiful features is that it works as as static HTML file.&#xA;&#xA;These are valid points. I confess, this project fulfills quite a narrow use case: I like to self-host my tools on a small, cheap VPS, and the first-party NodeJS server consumes about 100MB of RAM. This isn&#39;t huge, but it&#39;s a decent chunk of my available resources. This server consumes much less (about 10MB, and that&#39;s before I&#39;ve done anything to optimize it).&#xA;&#xA;This was also a project that let me combine two technologies that I like an awful lot, so if it seems self-indulgent, well... maybe it is. &#xA;&#xA;Components&#xA;&#xA;The server makes use of some very nice Crates; I&#39;ll mention some of the big ones:&#xA;&#xA;dl&#xA;dt&#xA;  a href=&#34;https://crates.io/crates/axum&#34;axum/a, a web framework&#xA;/dt&#xA;dd&#xA;I&#39;ve tried a number of Rust web frameworks (Tide, Rocket, simple-http-server); this one&#39;s the first one I feel like I really understood and was productive with (though that might also just be that I&#39;m slowly getting better at Rust). Of particular note is that Axum is compatible with a href=&#34;https://crates.io/crates/tower-http&#34;tower-http/a , so many services and middlewares that you might want already exist.&#xA;/dd&#xA;&#xA;dt&#xA;  a href=&#34;https://crates.io/crates/rusqlite&#34;rusqlite/a, a SQLite binding/a&#xA;/dt&#xA;dd&#xA;I use SQLite for most of my tiny side projects; this one&#39;s no exception. The TiddlyWiki back end mostly treats tiddlers as opaque bags of objects, so the database is little more than a key-value store.&#xA;/dd&#xA;&#xA;dt&#xA;  a href=&#34;https://crates.io/crates/serdejson&#34;serdejson/a, a loosely-typed JSON interface&#xA;/dt&#xA;dd&#xA;If you&#39;re reading about Rust you&#39;re probably familiar with serde, but since I wanted to retain TiddlyWiki&#39;s fairly open schema I needed an ergonomic way to work with un-typed JSON objects.&#xA;/dd&#xA;&#xA;/dl&#xA;&#xA;Future Work&#xA;&#xA;There are lots of ways this project could be added or improved:&#xA;&#xA;More testing; I want this server to be feature-compatible with the first party server.&#xA;User authentication and access control&#xA;Streaming large responses to keep memory small&#xA;&#xA;If any of that sounds interesting to you, pull requests and bug reports are very much welcome!&#xA;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p><a href="http://natknight.xyz/tag:tiddlywiki" class="hashtag"><span>#</span><span class="p-category">tiddlywiki</span></a> <a href="http://natknight.xyz/tag:rust" class="hashtag"><span>#</span><span class="p-category">rust</span></a> <a href="http://natknight.xyz/tag:selfhosting" class="hashtag"><span>#</span><span class="p-category">selfhosting</span></a> <a href="http://natknight.xyz/tag:release" class="hashtag"><span>#</span><span class="p-category">release</span></a></p>

<p>I just published the first (v0.1.0) release of <a href="https://github.com/nathanielknight/tiddly-wiki-server">tiddly-wiki-server</a>, which implements the <a href="https://tiddlywiki.com/#WebServer%20API">TiddlyWiki WebServer API</a> in Rust using Axum, SerDe, and TiddlyWiki.</p>



<h2 id="motivation" id="motivation">Motivation</h2>

<p>One might ask why a new TiddlyWiki server is necessary, since</p>
<ul><li>TiddlyWiki5 includes a first-party NodeJS web server, and</li>
<li>one of TiddlyWiki&#39;s beautiful features is that it works as as static HTML file.</li></ul>

<p>These are valid points. I confess, this project fulfills quite a narrow use case: I like to self-host my tools on a small, cheap VPS, and the first-party NodeJS server consumes about 100MB of RAM. This isn&#39;t huge, but it&#39;s a decent chunk of my available resources. This server consumes much less (about 10MB, and that&#39;s before I&#39;ve done anything to optimize it).</p>

<p>This was also a project that let me combine two technologies that I like an awful lot, so if it seems self-indulgent, well... maybe it is.</p>

<h2 id="components" id="components">Components</h2>

<p>The server makes use of some very nice Crates; I&#39;ll mention some of the big ones:</p>

<dl>
<dt>
  <a href="https://crates.io/crates/axum">axum</a>, a web framework
</dt>
<dd>
I&#39;ve tried a number of Rust web frameworks (Tide, Rocket, simple-http-server); this one&#39;s the first one I feel like I really understood and was productive with (though that might also just be that I&#39;m slowly getting better at Rust). Of particular note is that Axum is compatible with <a href="https://crates.io/crates/tower-http">tower-http</a> , so many services and middlewares that you might want already exist.
</dd>

<dt>
  <a href="https://crates.io/crates/rusqlite">rusqlite</a>, a SQLite binding</a>
</dt>
<dd>
I use SQLite for most of my tiny side projects; this one&#39;s no exception. The TiddlyWiki back end mostly treats tiddlers as opaque bags of objects, so the database is little more than a key-value store.
</dd>

<dt>
  <a href="https://crates.io/crates/serde_json">serde_json</a>, a loosely-typed JSON interface
</dt>
<dd>
If you&#39;re reading about Rust you&#39;re probably familiar with serde, but since I wanted to retain TiddlyWiki&#39;s fairly open schema I needed an ergonomic way to work with un-typed JSON objects.
</dd>

</dl>

<h2 id="future-work" id="future-work">Future Work</h2>

<p>There are lots of ways this project could be added or improved:</p>
<ul><li>More testing; I want this server to be feature-compatible with the first party server.</li>
<li>User authentication and access control</li>
<li>Streaming large responses to keep memory small</li></ul>

<p>If any of that sounds interesting to you, pull requests and bug reports are very much welcome!</p>
]]></content:encoded>
      <guid>http://natknight.xyz/a-tiddlywiki-server-in-rust</guid>
      <pubDate>Mon, 27 Jun 2022 07:00:00 +0000</pubDate>
    </item>
  </channel>
</rss>