A self-contained JavaScript wiki for the browser, Node.js, AWS Lambda etc.
Go to file
Jermolene 622d4a2d50 Version number update for 5.0.8-beta 2014-02-28 15:54:01 +00:00
boot Add new option to retain tiddler paths 2014-02-27 16:30:05 +00:00
core Retract change to new tiddler handling in navigator.js 2014-02-28 15:31:35 +00:00
editions Set release date for 5.0.8 2014-02-28 15:52:12 +00:00
languages Elements necessary to create an empty fr-FR.html via bld-languages.sh, aside "de" and "zh" files 2014-02-27 23:19:38 +01:00
licenses Merge branch 'fr-FR' of https://github.com/xcazin/TiddlyWiki5 into xcazin-fr-FR 2014-02-21 16:05:11 +00:00
plugins/tiddlywiki Make type information translateable 2014-02-16 19:58:53 +00:00
themes/tiddlywiki Typos and style tweaks 2014-02-23 23:09:58 +00:00
.gitignore Removed .gitignore by mistake 2014-02-20 22:00:11 +01:00
2bld.cmd Added Windows specific build scripts. 2013-11-19 19:57:05 -05:00
2bld.sh Get rid of the "new_" prefix we had on some methods 2013-11-08 08:51:14 +00:00
bld-languages.sh Elements necessary to create an empty fr-FR.html via bld-languages.sh, aside "de" and "zh" files 2014-02-27 23:19:38 +01:00
bld.cmd Generate the copyright.md file in the same way we generate readme.md 2014-01-24 18:35:17 +00:00
bld.sh Generate the copyright.md file in the same way we generate readme.md 2014-01-24 18:35:17 +00:00
contributing.md Update static link generation 2014-01-26 13:34:53 +00:00
deploy.cmd Sync bld.cmd with latest bld.sh 2013-11-26 16:43:00 -05:00
deploy.sh Update the deploy script to publish to NPM 2013-11-09 10:54:10 +00:00
ginsu.cmd Sync bld.cmd with latest bld.sh 2013-11-26 16:43:00 -05:00
ginsu.sh Get rid of the "new_" prefix we had on some methods 2013-11-08 08:51:14 +00:00
lazy.cmd Add support for serving TW5 with lazily loaded images 2014-01-29 09:05:00 +00:00
lazy.sh Add support for serving TW5 with lazily loaded images 2014-01-29 09:05:00 +00:00
package.json Version number update for 5.0.8-beta 2014-02-28 15:54:01 +00:00
qbld.cmd Add quick build 2013-12-20 15:29:53 +00:00
qbld.sh Add quick build 2013-12-20 15:29:53 +00:00
readme.md Docs update 2014-02-27 17:07:52 +00:00
serve.cmd Some rejigging of the editions folders 2014-02-24 13:28:55 +00:00
serve.sh Some rejigging of the editions folders 2014-02-24 13:28:55 +00:00
tankbld.cmd Add new edition for Tank, along with a build script 2014-02-12 18:29:32 +00:00
tankbld.sh Add new edition for Tank, along with a build script 2014-02-12 18:29:32 +00:00
test.cmd Adjust references to five.tiddlywiki.com 2013-12-15 16:53:10 +00:00
test.sh Adjust references to five.tiddlywiki.com 2013-12-15 16:53:10 +00:00
tiddlywiki.js Make require() compliant with CommonJS Modules/1.1 2013-10-12 13:44:09 -04:00
verbump.cmd Update `verbump` script to include version number in commit message 2013-12-03 10:09:37 +00:00
verbump.sh Update `verbump` script to include version number in commit message 2013-12-03 10:09:37 +00:00
wbld.cmd Update template used for deployment to TiddlyWeb 2013-12-11 07:37:08 +00:00
wbld.sh Update template used for deployment to TiddlyWeb 2013-12-11 07:37:08 +00:00

readme.md

Welcome to TiddlyWiki

Welcome to TiddlyWiki, 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.

This is version 5.0.8-prerelease of TiddlyWiki, a major reboot designed for the next 25 years. It is currently in beta (see the detailed ReleaseHistory). There is a RoadMap for moving to the full release. It is a great time to get involved and support the future development of TiddlyWiki.

Version 5.0.8-beta will require some changes to content created for earlier betas see: Notes for upgrading to 5.0.8-beta and ReleaseHistory

TiddlyWiki is a free, open source project that depends on your love and support for its survival.

TiddlyWikiClassic - http://classic.tiddlywiki.com

On this site, unless noted otherwise, "TiddlyWiki" refers to the new version 5, and "TiddlyWikiClassic" is used to identify the older version.

The deep internal improvements mean that the new version of TiddlyWiki is not fully compatible with TiddlyWikiClassic. Existing content will need massaging, while plugins and themes will have to be completely rewritten. The upgrade path will get smoother as the new version matures.

Getting started with TiddlyWiki under Node.js

Running TiddlyWiki on Node.js brings several important benefits over and above the single file version:

  • You can edit your content on any suitably compatible HTML5 browser, including smartphones and tablets
  • Individual tiddlers are stored in separate files, which you can organise as you wish
  • The ability to build multiple wikis that blend different combinations of shared and unique content

Installation

  1. Install Node.js from http://nodejs.org
  2. Open a command line terminal and type:

    npm install -g tiddlywiki

    If it fails with an error you may need to re-run the command as an administrator:

    npm install -g tiddlywiki (Windows)

    sudo npm install -g tiddlywiki (Mac/Linux)

  3. Check TiddlyWiki is installed by typing:

    tiddlywiki --version

  4. In response, you should see TiddlyWiki report its current version (eg 5.0.8-beta; you may also see other debugging information reported)
  5. Try it out:
    1. tiddlywiki mynewwiki --init server to create a folder for a new wiki that includes server-related components
    2. tiddlywiki mynewwiki --server to start TiddlyWiki
    3. Visit http://127.0.0.1:8080/ in your browser
    4. Try editing and creating tiddlers

The -g flag causes TiddlyWiki to be installed globally. Without it, TiddlyWiki will only be available in the directory where you installed it.

A slightly different method for installation is recommended if you plan on forking the source code in order to study it or contribute to it. See Working with the TiddlyWiki5 repository.

Usage

TiddlyWiki5 can be used 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.html

Running 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.

The first 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 [<wikipath>] [--<command> [<arg>[,<arg>]]]

The available commands are:

Upgrading

If 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 tiddlywiki

On Mac or Linux you'll need to add sudo like this:

sudo npm update -g tiddlywiki

Working with the TiddlyWiki5 repository

Setting Up

If you plan on working with the TiddlyWiki5 source code then follow these steps:

  1. Fork the TiddlyWiki5 GitHub repository from https://github.com/Jermolene/TiddlyWiki5
  2. Clone a local copy of your fork
  3. Open a command line terminal and change the current working directory to the root of the repo
  4. Type npm link (Windows) or sudo npm link (Mac/Linux) to tell npm to use this copy of the repo as the globally installed one

After this procedure you can work with TiddlyWiki5 via npm as though it were installed in the usual way with npm install -g tiddlywiki.

See also Scripts for TiddlyWiki on Node.js.

This readme file was automatically generated by TiddlyWiki