Tw5-node-red continued

First, would like to acknowledge the patience of the TiddlyWiki community as I have been developing the TW5-Node-Red application over the past months (years?). But finally coming along to a publishable project.

This project has been years in the making, and is finally coming to bear fruit.

Also, please excuse the sizing of images below - know they are inconsistent, grrr…

If you wish to follow along the daily updates - the current code base is in ‘tw5-pocket-io’ but upon release (Jun-Jul 2025) will be ‘tw5-node-red’-

First will need to install Node-Red and start it up once. Node-Red generates default stuff that is used by the system. See Running Node-RED locally : Node-RED - then -

https://github.com/PotOfCoffee2Go/tw5-pocket-io.git
cd tw5-pocket-io
npm install

My TW5-Node-Red project has been going thru a long process. Instead of attempting to describe how it works, will show images of the app startup - which gives an idea of what it does. This project will finaaly become the ‘tw5-node-red’ project upon initial release.

The goal is to have wikis interact with in Node-Red in a simple manner:

After cloning and npm install - the npm start will display a summary of the configuration settings -

The next display is the startup summary -

This informs of the ‘hostname’ on the local network which wikis are available. In this case am running on my ‘raspberrypi’ machine - which is accessable from network devices by ‘http://raspberrypi:xxxx’ - xxxx being the port.

This will be followed by the startup of ‘TiddlyWiki databases’. These are wikis which you can use to store records(tiddlers) to be used by your applications. This is optional - the install has two databases as examples - connections and users - they are not used.

The next section to startup are the webservers that are available to the system. Copy ‘server’ edition wikis into the `./wikis’ directory and they will startup as part of the Node-Red network. Each wiki has it’s own port - starting from a base port and incrementing by one for each webserver -

Notice these TW webservers startup are ‘localhost’ - as shall see later users of the webservers (clients) do not directly access them.

Next the server Javascript code is loaded. The code comes from tiddlers - is similar to other module loaders ( CJS, ESM, AMD, etc) but loads from tiddlers instead of files. Thus one writes Javascript code and stores as tiddlers. To use Node-Red, the server code is already done, unlesss have specific application stuff needed -

The next section of the startup are the proxy servers to the ‘webservers’ above. The interface to the system are TW webservers, however, they are accessed via a zero-config reverse proxy server. The proxy server is an expressjs server which can have additional routes prior to sending requests to thw webserver - the REST project included in the system is an example of a RESTful interface provided by the prox(ies) -

Generally, the proxies are host=0.0.0.0 so devices on the local network can access the webservers via the proxies.

Finally, Node-Red comes up. Node-Red nodes have access to the complete system (such as all config, settings, $tw.uils/$tw.wiki/etc) for each webserver -

4 Likes

Assume you have not changed the ./config.js in the project directory for the following links to work - all permalinks can be re-configured via ./config.js - so (of course) changing them - changes the links.

Access to Node-Red flow editor

The system uses the Node-Red standard settings.js file in your User directory .node-red directory. Thus any credentials or modules you have installed into Node-Red will be available in the Node-Red flow editor.

The Node-Red Flow Editor has a link displayed in the upper-right of the Webserver (see below) for each wiki in the network. If your Node-Red settings file has credentials enabled - users will be prompted for user/password to be allowed access to the Flow Editor. Is all standard Node-Red stuff.

Adding a wiki to the pocket-io network

Note:

The wiki directory name should conform to the format allowed as a Javascript variable name - letters, numbers, underbar, dollarsign. (ie: no spaces or dashes)

This is not actually a requirement, but the wiki directory name is used to reference the wiki in the pocket-io network as a Javascript object.

So as a developer - save yourself A LOT!!! of grief and have the directory name of the ‘server’ edition wiki in the ./wikis folder short , descriptive, and concise - ‘WikiOfKnightsThatSayNee’.

Adding a wiki to the network is pretty simple.

  1. Copy an existing ‘server’ edition directory into `./wikis’ directory
  2. Create a new wiki using the TiddlyWiki --init command

1) Copy an existing ‘server’ edition

If you already have a ‘server’ edition wiki - just copy that directory into the project .\wikis folder. Restart the system (‘npm start’) and the wiki will be included in the network.

2) Create a new wiki

From the project directory can use the standard tiddlywiki ‘–init’ command to create a new '‘server’ edition wiki

tiddlywiki ./wikis/NewWiki --init server

Restart the system (‘npm start’) and the wiki will now be available to users.


Default wiki in the pocket-io network

The ./config.js file in the project directory has an option ‘defaultWiki’. This is the wiki that will be displayed first in the client list of wikis. It generally would be the wiki that new users to your app would visit first.

Assuming ./config.js is not modified, by default the ‘Home’ wiki is at address http://{domainName}:3000.

If you are running a browser on the same machine the project is installed - then ‘localhost’ can be used as ‘{domainName}’. Though the system will automatically assign the host name of the running computer so other devices on the local network have access.

For example: If your computer’s name is ‘win-does’ - then links will be generated as http://win-does:3000 - thus devices on the local network have access to the wikis.

Access the network

The default install has a wiki named ‘Home’ in the ./wikis directory so it is on the network. - go to ‘http://localhost:3000’ and should see -

In the sidebar (#1) of the TW Webserver will see information about the wiki you are viewing. The wiki name, the TW User, link to to wiki you are viewing, link to the Node-Red Flow Editor, and the connection ID to the server.

A list of all the wikis in the network are displayed (#2). Clicking on the name of the wiki will open that wiki in the browser.

If you scroll down will see all of the wikis in the network, and the projects which those wiki’s contain -

More about projects later - they are a way of organizing all of the components of your application.