Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oxdc/tiddly
An Electron desktop application for TiddlyWiki on Node.js
https://github.com/oxdc/tiddly
electron-app note-taking tiddlywiki tiddlywiki5 wiki
Last synced: about 2 months ago
JSON representation
An Electron desktop application for TiddlyWiki on Node.js
- Host: GitHub
- URL: https://github.com/oxdc/tiddly
- Owner: oxdc
- License: mit
- Created: 2018-08-06T04:31:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-07T02:59:51.000Z (over 6 years ago)
- Last Synced: 2024-10-15T07:33:35.439Z (3 months ago)
- Topics: electron-app, note-taking, tiddlywiki, tiddlywiki5, wiki
- Language: HTML
- Homepage:
- Size: 357 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Tiddly
An Electron desktop application for [TiddlyWiki](https://tiddlywiki.com/) on Node.js
> TiddlyWiki
>
> A non-linear personal web notebook that anyone can use and keep forever, independently of any corporation.
>
> [Github repository](https://github.com/Jermolene/TiddlyWiki5)
>
> [Website](https://tiddlywiki.com/)## Screenshots
![Screenshot 1](doc/Screenshot1.png)
![Screenshot 2](doc/Screenshot2.png)## Getting Started
+ [Install Node.js](https://nodejs.org/en/download/) and [npm](https://www.npmjs.com/get-npm)
+ [Install TiddlyWiki on Node.js](https://github.com/Jermolene/TiddlyWiki5#installing-tiddlywiki-on-nodejs)
```bash
npm install tiddlywiki -g
```+ Check your installation
```bash
tiddlywiki --version
```
You can see installed version of TiddlyWiki if OK.+ Create your Wiki, remember to change the name `mynewwiki` to what you want!
```bash
cd /path/to/store/your/wiki
tiddlywiki mynewwiki --init server
```+ ***Optional:*** You can run your Wiki now if you want to try out.
```bash
tiddlywiki mynewwiki --server
```
Visit http://127.0.0.1:8080/ in your browser
+ [Install Electron globally](https://electronjs.org/docs/tutorial/installation)
```bash
npm install electron -g
```+ [Install electron-packager globally](https://github.com/electron-userland/electron-packager#installation)
```bash
npm install electron-packager -g
```
+ [Install Git](https://git-scm.com/downloads)
+ Clone this repository
```bash
cd /path/to/store
git clone https://github.com/oxdc/tiddly
cd tiddly
```+ Install dependencies
```bash
npm install
```+ Copy the `config-example.js` as a new file called `config.js`
```bash
cp ./config-example.js ./config.js
```+ Edit the configuration attributes
```bash
vim ./config.js
``````javascript
const configuration = {
host: '127.0.0.1', // localhost or 0.0.0.0 for web access
port: 8080, // tiddlywiki server port
/*
You must change this path to your wiki's
absolute path
*/
wikiDir: '/absolute/path/to/your/wiki',
/*
NOTE: If you delete two lines below,
your wiki site will be open to all!
Anyone can visit and edit without login!
*/
username: 'user', // CHANGE ME OR DELETE !!
password: 'passw0rd', // CHANGE ME OR DELETE !!
/*
If true, you won't need to enter your
password each time you open this application.
*/
autoLogin: true,
/*
Optional
If true, Tiddly will launch the Content Server.
You can access your files through it and never
need to import all of them into your wiki.
*/
enableContentServer: false
}
```
+ ***Optional:*** Edit the Tiddly Content Server```bash
vim ./config.js
``````javascript
const configuration = {
host: '127.0.0.1', // localhost or 0.0.0.0 for web access
port: 8080, // tiddlywiki server port
/*
You must change this path to your wiki's
absolute path
*/
wikiDir: '/absolute/path/to/your/wiki',
/*
NOTE: If you delete two lines below,
your wiki site will be open to all!
Anyone can visit and edit without login!
*/
username: 'user', // CHANGE ME OR DELETE !!
password: 'passw0rd', // CHANGE ME OR DELETE !!
/*
If true, you won't need to enter your
password each time you open this application.
*/
autoLogin: true,
/*
Optional
If true, Tiddly will launch the Content Server.
You can access your files through it and never
need to import all of them into your wiki.
*/
enableContentServer: true,
// default root directory of the Tiddly Content Server
csRoot: './contents',
// Tiddly Content Server host address
csHost: '127.0.0.1',
// port of Tiddly Content Server
csPort: 8081,
/*
White list defines a series of folders that you
can access. If anyone is trying to access a folder
that's not contained here, it will end up with a 403
forbidden error.! Remember: accessing root directory '/' is always forbidden
*/
csWhiteList: ['demo']
}
```
After the Tiddly Content Server launched, you can see a demo page at http://localhost:8081/demo .You can access your files through it and never need to import all of them into your wiki.
Example:
```tiddler
created: 19710101000000000
creator: user
modified: 19710101000000000
modifier: user
tags:
title: Content Server Test
type: text/vnd.tiddlywiki[img[tiddly|http://localhost:8081/demo/imgs/tiddly.png]]
[[pdf|http://localhost:8081/demo/pdfs/hints.pdf]]
```You can edit MIME types of your Tiddly Content Server. See also [MDN Incomplete list of MIME types](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Complete_list_of_MIME_types) .
```javascript
const configuration = {
// ......
mimeType: {
'.ico': 'image/x-icon',
'.html': 'text/html',
'.js': 'text/javascript',
'.json': 'application/json',
'.css': 'text/css',
'.png': 'image/png',
'.jpg': 'image/jpeg',
'.wav': 'audio/wav',
'.mp3': 'audio/mpeg',
'.svg': 'image/svg+xml',
'.pdf': 'application/pdf',
'.doc': 'application/msword',
'.eot': 'appliaction/vnd.ms-fontobject',
'.ttf': 'aplication/font-sfnt'
}
}
```+ Run this application
```bash
electron .
```+ Build (pack) this application
```bash
electron-packager .
```+ Done! Enjoy!