Popularity
8.0
Declining
Activity
9.7
Growing
7,687
238
1,145

Code Quality Rank: L2
Monthly Downloads: 0
Programming language: JavaScript
License: GNU General Public License v3.0 or later
Tags: Wiki     Tiddlywiki5     Tiddlywiki    
Latest version: v5.1.22

TiddlyWiki alternatives and similar tools

Based on the "Wikis" category.
Alternatively, view TiddlyWiki alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of TiddlyWiki or a related project?

Add another 'Wikis' Tool

README

Welcome to TiddlyWiki, a non-linear personal web notebook that anyone can use and keep forever, independently of any corporation.TiddlyWiki is a complete interactive wiki in JavaScript. It can be used as a single HTML file in the browser or as a powerful Node.js application. It is highly customisable: the entire user interface is itself implemented in hackable WikiText.Learn more and see it in action at https://tiddlywiki.com/Developer documentation is in progress at https://tiddlywiki.com/dev/Join the Community UsersThe TiddlyWiki discussion groups are mailing lists for talking about TiddlyWiki: requests for help, announcements of new releases and plugins, debating new features, or just sharing experiences. You can participate via the associated website, or subscribe via email.The main TiddlyWiki group: https://groups.google.com/group/TiddlyWikiNote that you do not need a Google Account to join the discussion groups. Subscribe by sending an email to mailto:[email protected].An enhanced group search facility is available on mail-archive.comWatch recordings of our regular TiddlyWiki HangoutsFollow @TiddlyWiki on Twitter for the latest newsNew: Join us on our live chat at https://gitter.im/TiddlyWiki/public !There is also a discord available at https://discord.gg/HFFZVQ8DevelopersThere are several resources for developers to learn more about TiddlyWiki and to discuss and contribute to its development.tiddlywiki.com/dev is the official developer documentationGet involved in the development on GitHubDiscussions are for Q&A and open-ended discussionIssues are for raising bug reports and proposing specific, actionable new ideasThe older TiddlyWikiDev Google Group is now closed in favour of GitHub Discussions but remains a useful archive: https://groups.google.com/group/TiddlyWikiDevAn enhanced group search facility is available on mail-archive.comFollow @TiddlyWiki on Twitter for the latest newsChat at https://gitter.im/TiddlyWiki/public (development room coming soon)New releases of TiddlyWiki, TiddlyDesktop and TiddlyFox are announced via the discussion groups and Twitter (you can also subscribe to an Atom/RSS feed of TiddlyWiki releases from GitHub)DocumentationThere is also a discussion group specifically for discussing TiddlyWiki documentation improvement initiatives: https://groups.google.com/group/tiddlywikidocs Installing TiddlyWiki on Node.jsInstall Node.jsLinux: Debian/Ubuntu:apt install nodejsMay need to be followed up by:apt install npmArch Linuxpacman -S tiddlywiki (installs node and tiddlywiki)Macbrew install nodeAndroidTermux for AndroidOther See http://nodejs.orgOpen a command line terminal and type:npm install -g tiddlywikiIf it fails with an error you may need to re-run the command as an administrator:sudo npm install -g tiddlywiki (Mac/Linux)Check TiddlyWiki is installed by typing:tiddlywiki --versionIn response, you should see TiddlyWiki report its current version (eg "5.2.2"; you may also see other debugging information reported)Try it out:tiddlywiki mynewwiki --init server to create a folder for a new wiki that includes server-related componentstiddlywiki mynewwiki --listen to start TiddlyWikiVisit http://127.0.0.1:8080/ in your browserTry editing and creating tiddlersOptionally, make an offline copy:click the save changes button in the sidebar, ORtiddlywiki mynewwiki --build indexThe -g flag causes TiddlyWiki to be installed globally. Without it, TiddlyWiki will only be available in the directory where you installed it.If you are using Debian or Debian-based Linux and you are receiving a node: command not found error though node.js package is installed, you may need to create a symbolic link between nodejs and node. Consult your distro's manual and whereis to correctly create a link. See github issue 1434Example Debian v8.0: sudo ln -s /usr/bin/nodejs /usr/bin/nodeYou can also install prior versions like this:npm install -g [email protected]Using TiddlyWiki on Node.jsTiddlyWiki5 includes a set of Commands for use on the command line to perform an extensive set of operations based on TiddlyWikiFolders, TiddlerFiles and TiddlyWikiFiles.For example, the following command loads the tiddlers from a TiddlyWiki HTML file and then saves one of them in static HTML:tiddlywiki --verbose --load mywiki.html --rendertiddler ReadMe ./readme.htmlRunning tiddlywiki from the command line boots the TiddlyWiki kernel, loads the core plugins and establishes an empty wiki store. It then sequentially processes the command line arguments from left to right. The arguments are separated with spaces. New in: 5.1.20 First, there can be zero or more plugin references identified by the prefix + for plugin names or ++ for a path to a plugin folder. These plugins are loaded in addition to any specified in the TiddlyWikiFolder.The next argument is the optional path to the TiddlyWikiFolder to be loaded. If not present, then the current directory is used.The commands and their individual arguments follow, each command being identified by the prefix --.tiddlywiki [+<pluginname> | ++<pluginpath>] [<wikipath>] [--<command> [<arg>[,<arg>]]]For example:tiddlywiki --version tiddlywiki +plugins/tiddlywiki/filesystem +plugins/tiddlywiki/tiddlyweb mywiki --listen tiddlywiki ++./mygreatplugin mywiki --listen New in: 5.1.18 Commands such as the ListenCommand that support large numbers of parameters can use NamedCommandParameters to make things less unwieldy. For example:tiddlywiki wikipath --listen username=jeremy port=8090See Commands for a full listing of the available commands. Upgrading TiddlyWiki on Node.jsIf you've installed TiddlyWiki on Node.js on the usual way, when a new version is released you can upgrade it with this command:npm update -g tiddlywikiOn Mac or Linux you'll need to add sudo like this:sudo npm update -g tiddlywikiAlso seeNamedCommandParametersTiddlyWikiFoldersMultiTiddlerFileSyntaxMultiTiddlerFilesTiddlerFilesGenerating Static Sites with TiddlyWikiHow to build a TiddlyWiki5 from individual tiddlersUsing TiddlyWiki for GitHub project documentationUsing a custom path prefix with the client-server editionBuilding TiddlyWikiClassicCustomising Tiddler File NamingEnvironment Variables on Node.jsInstalling TiddlyWiki Prerelease on Node.jsInstalling custom plugins on Node.jsScripts for TiddlyWiki on Node.jsNode.js on TermuxWorking with the TiddlyWiki5 repositorytiddlywiki.files Filestiddlywiki.info FilesInstalling a plugin from the plugin libraryInternet Information ServicesThis readme file was automatically generated by TiddlyWiki