TiddlyDesktop is a special purpose web browser for working with locally stored TiddlyWikis. See http://tiddlywiki.com/ for more details of TiddlyWiki.
See this video tutorial for an overview of installing and using TiddlyDesktop on Windows and OS X:
https://www.youtube.com/watch?v=i3Bggkm7paA
It is based on nw.js, a project created and developed in the Intel Open Source Technology Center:
Download the Windows, linux or Mac binary .zip files from:
https://github.com/TiddlyWiki/TiddlyDesktop/releases
Unzip into a folder and run TiddlyWiki.app
or nw.exe
and for linux nw
Note that TiddlyDesktop will not work correctly from a Windows UNC network share (eg \\MY-SERVER\SHARE\MyFolder
). You should map the network share to a local drive, and run it from there.
To install TiddlyDesktop on NixOS, you first need to add this repo to your configuration.nix
; Using a let
expression at the top of the file is a good approach:
let
twdesktop = let
rev = "Set this to the TiddlyDesktop Git revision that you want to install.";
in import (fetchTarball "https://github.com/TiddlyWiki/TiddlyDesktop/archive/${rev}.tar.gz") { };
in
...
Then add the attribute name (which is twdesktop in the example above) to your systemPackages
:
...
environment.systemPackages = with pkgs; [
...
twdesktop
];
...
In addition to the method described above, the tiddlydesktop package is available as a Nix Flake; See https://nixos.wiki/wiki/Flakes to read more about Flakes. Simply use the Flake input github:TiddlyWiki/TiddlyDesktop
. For example, you can run TiddlyDesktop with the command nix run github:TiddlyWiki/TiddlyDesktop
.
To have separate mutliple instances of TiddlyDesktop (for example, separate Personal and Professional instances), you can pass the --user-data-dir
argument. e.g. /opt/TiddlyDesktop/nw --user-data-dir=/mnt/data/TiddlyWiki/config
. The property should be a directory to use for holding configuration data.
The F12 key opens the Chromium developer tools for the current window.
Instructions for Windows 10 64-bit (updates for other OSs welcome).
npm install --save
git tag v0.0.21
, the version number you just updated in package.jsongit push v0.0.21
and a draft release will be createddownload-nwjs.sh
to download the latest nw.js binariesbld.sh
output/mac/TiddlyWiki.app
or output/win/nw.exe
or output/linux32/nw
or output/linux64/nw