https://github.com/tiddlywiki/tiddlywikilinks
Link aggregator for the TiddlyWiki community
https://github.com/tiddlywiki/tiddlywikilinks
tiddlywiki
Last synced: 8 months ago
JSON representation
Link aggregator for the TiddlyWiki community
- Host: GitHub
- URL: https://github.com/tiddlywiki/tiddlywikilinks
- Owner: TiddlyWiki
- License: mit
- Created: 2021-03-18T21:10:39.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-28T16:21:14.000Z (over 1 year ago)
- Last Synced: 2025-04-06T09:43:18.061Z (about 1 year ago)
- Topics: tiddlywiki
- Language: JavaScript
- Homepage: https://links.tiddlywiki.org/
- Size: 147 KB
- Stars: 33
- Watchers: 9
- Forks: 14
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TiddlyWiki Links
## Setup
Clone this repository and install its dependencies:
```
npm install
```
To install subsequent upstream changes from TiddlyWiki 5:
```
npm update
```
## Develop
To build the app locally and serve it over HTTP:
```
npm start
```
To edit tiddlers over HttP without downloading link tiddlers. You must have previously downloaded the link tiddlers via `npm start` or other command. A random port will be used if port 8080 is unavailable.
```
npm run edit
```
## Build
To build the app locally:
```
npm run build
```
The output files will be in `/output`.
It is recommended to view the output files via the HTTTP server. The links in the output files won't work correctly if they are viewed via the `file://` protocol (in particular, unlike a webserver, the `file://` protocol does not automatically add `/index.html` to URLs that reference a directory).