UNPKG

24.6 kBMarkdownView Raw
1[![NPM](https://nodei.co/npm/jingo.png?compact=true)](https://npmjs.org/package/jingo)
2
3[ ![Codeship Status for claudioc/jingo](https://www.codeship.io/projects/4c413870-353e-0132-115c-220292a78f73/status)](https://www.codeship.io/projects/40997)
4
5JINGO
6=====
7
8A **git based** _wiki engine_ written for **node.js**, with a decent design, a search capability and a good typography.
9
10![Screenshot](https://cloud.githubusercontent.com/assets/166692/26024412/f0cb9206-37d0-11e7-9748-8101fc4e662f.png)
11
12<!-- toc -->
13
14Table of contents
15-----------------
16
17 * [Introduction](#introduction)
18 * [Features](#features)
19 * [Installation](#installation)
20 * [Authentication and Authorization](#authentication-and-authorization)
21 * [Common problems](#common-problems)
22 * [Known limitations](#known-limitations)
23 * [Customization](#customization)
24 * [Editing](#editing)
25 * [Configuration options reference](#configuration-options-reference)
26
27<!-- toc stop -->
28
29Introduction
30-------------
31
32The aim of this wiki engine is to provide an easy way to create a centralized documentation area for people used to work with **git** and **markdown**. It should fit well into a development team without the burden to have to learn a complex and usually overkill application.
33
34Jingo is very much inspired by (and format-compatible with) the github own wiki system [Gollum](https://github.com/gollum/gollum), but it tries to be more a stand-alone and complete system than Gollum is.
35
36Think of jingo as "the github wiki, without github but with more features". "Jingo" means "Jingo is not Gollum" for more than one reason.
37
38There is a demo server running at http://jingo.cica.li:6067/wiki/home
39
40![Screenshot](https://cloud.githubusercontent.com/assets/166692/26024413/f53612c6-37d0-11e7-8dd2-01c9ed993cc6.png)
41
42Features
43--------
44
45- No database: Jingo uses a git repository as the document archive
46- Markdown for everything, [github flavored](http://github.github.com/github-flavored-markdown/)
47- Jingo uses [Codemirror](http://codemirror.net/) or [Markitup](http://markitup.jaysalvat.com/home/) as the markup editor, with a nice (ajax) preview (see the `features` key in the config file)
48- It provides a "distraction free", almost full screen editing mode
49- Compatible with a wiki created with the [Gollum](https://github.com/github/gollum) wiki
50- Revision history for all the pages (with restore)
51- Show differences between document revisions
52- Paginated list of all the pages, with a quick way to find changes between revisions
53- Search through the content _and_ the page names
54- Page layout accepts custom sidebar and footer
55- Gravatar support
56- Can include IFRAMEs in the document (es: embed a Google Drive document)
57- Generate Table of Contents for pages
58- Can use custom CSS and JavaScript scripts
59- White list for authorization on page reading and writing
60- Detects unwritten pages (which will appear in red)
61- Automatically push to a remote (optionally)
62- Mobile friendly (based on Bootstrap 3.x)
63- Quite configurable, but also works out of the box
64- Works well behind a proxy (i.e.: the wiki can be "mounted" as a directory in another website)
65- Pages can be embedded into another site
66- Authentication via Google, Github, LDAP and local name/password
67
68For code syntax highlighting, Jingo uses the `node-syntaxhighlighter` module. For the list of supported languages, please refer to [this page](https://github.com/thlorenz/node-syntaxhighlighter/tree/master/lib/scripts).
69
70![Screenshot](https://cloud.githubusercontent.com/assets/166692/26024414/f8470cb8-37d0-11e7-9c96-5193aca12591.png)
71
72Installation
73------------
74
75`npm install -g jingo` or download/clone the whole thing and run `npm install`.
76
77Note: if you already have Jingo installed, please also run `npm prune` (some modules can be stale and need to be removed).
78
79Jingo needs a config file and to create a sample config file, just run `jingo -s`, redirect the output on a file and then edit it (`jingo -s > config.yaml`). The config file contains all the available configuration options. Be sure to provide a valid server hostname (like wiki.mycompany.com) if you use a 3rd party provider for authentication (like Google or GitHub). It is needed for them to be able to get back to you.
80
81This document contains also [the reference](#configuration-options-reference) for all the possible options.
82
83If you define a `remote` to push to, then Jingo will automatically issue a push to that remote every `pushInterval` seconds. To declare a `remote` for Jingo to use, you'll need to identify the name of your local remote. The following example shows how a local remote is typically defined:
84
85`git remote add origin https://github.com/joeuser/jingorepo.git'`
86
87Based on that example, you would update config.yaml with the remote name "origin" as follows:
88
89`remote: "origin"`
90
91You can also use the `git remote` command to get the name of your remote.
92
93You can also specify a branch using the syntax "remotename branchname". If you don't specify a branch, Jingo will use `master`. Please note that before the `push`, a `pull` will also be issued (at the moment Jingo will not try to resolve conflicts, though).
94
95The basic command to run the wiki will then be
96
97`jingo -c /path/to/config.yaml`
98
99Before running jingo you need to initialise its git repository somewhere (`git init` is enough). Additionally the user running the process needs to have `git config --global user.name` and `git config --global user.email` configured. Else your document's repo will get scrambled and you have to reinitialize it again (`rm -rf .git && git init`).
100
101If you define a remote to push to, be sure that the user who'll push has the right to do so. This means you have to configure the remote via the `git://` URI that uses ssh authentication to push and have [created and published the process user's ssh public key](https://help.github.com/articles/generating-ssh-keys/) to the remote.
102
103If your documents reside in subdirectory of your repository, you need to specify its name using the `docSubdir` configuration option. The `repository` path _must_ be an absolute path pointing to the root of the repository.
104
105If you want your wiki server to only listen to your `localhost`, set the configuration key `localOnly` to true.
106
107![Screenshot](https://cloud.githubusercontent.com/assets/166692/26024415/fc211aea-37d0-11e7-9ae2-77ce32cedb07.png)
108
109Authentication and Authorization
110--------------------------------
111
112You can enable the following strategies: _Google logins (OAuth2)_, _GitHub logins (OAuth2)_, _ldap logins_ or a simple, locally verified username/password credentials match (called "local").
113
114The _Google Login_ and the _GitHub login_ uses OAuth 2 and that means that on a fresh installation you need to get a `client id` and a `client secret` from Google or GitHub and put those informations in the configuration file.
115
116For Google, follow these instructions (you need to be logged in in Google):
117
118* Open the [Google developer console](https://code.google.com/apis/console/)
119* Create a new project (you can leave the _Project id_ as it is). This will take a little while
120* Open the _Consent screen_ page and fill in the details (particularly, the _product name_)
121* Now open _APIs & auth_ => _Credentials_ and click on _Create new client id_
122* Here you need to specify the base URL of your jingo installation. Google will fill in automatically the other field
123 with a `/oauth2callback` URL, which is fine
124* Now you need to copy the `Client ID` and `Client secret` in your jingo config file in the proper places
125
126For GitHub, follow these instructions (you need to be logged in in GitHub):
127
128* Register a new application [here](https://github.com/settings/applications/new)
129* Enter whatever `Application name` you want
130* Enter your installation URL (localhost is OK, for example "http://localhost:6767/")
131* Enter <your installation URL>/auth/github/callback as the `Authorization callback URL`
132* Press the `Register application` button
133* In the following page, on the top right corner, take note of the values for `Client ID` and `Client Secret`
134* Now you need to copy the `Client ID` and `Client secret` in your jingo config file in the proper places
135
136**Warning** In certain cases the Github authentication system return an empty email and Jingo is not happy about this. To avoid problems, when using Github set the `authorization.emptyEmailMatches` configuration option to `true`.
137
138The _ldap_ method uses `url` as the ldap server url, and optionally a `bindDn` and `bindCredentials` if needed. The `searchBase` and `searchFilter` are required for searching in the tree. In the configuration `searchAttributes` is also available.
139Since we want to install the (binary) support to LDAP only when needed, please _manually_ `npm install passport-ldapauth` to use the LDAP support.
140
141The _local_ method uses an array of `username`, `passwordHash` and optionally an `email`. The password is hashed using a _non salted_ SHA-1 algorithm, which makes this method not the safest in the world but at least you don't have a clear text password in the config file. To generate the hash, use the `--hash-string` program option: once you get the hash, copy it in the config file.
142
143You can enable all the authentications options at the same time. The `local` is disabled by default.
144
145The _authorization_ section of the config file has three keys: `anonRead`, `validMatches` and `emptyEmailMatches`.
146
147If `anonRead` is true, then anyone who can access the wiki can read anything. If `anonRead` is false you need to authenticate also for reading and then the email of the user _must_ match at least one of the regular expressions provided via validMatches, which is a comma separated list. There is no "anonWrite", though. To edit a page the user must be authenticated.
148
149`emptyEmailMatches` allows access when remote authentication providers do not provide an email address as part of user data. It defaults to `false`, but will usually need to be set to `true` for GitHub authentication (GitHub only returns email addresses that have been made public on users' GitHub accounts).
150
151The authentication is mandatory to edit pages from the web interface, but jingo works on a git repository; that means that you could skip the authentication altogether and edit pages with your editor and push to the remote that jingo is serving.
152
153Known limitations
154-----------------
155
156- The authentication is mandatory (no anonymous writing allowed). See also issue #4
157- The repository is "flat" (no directories or namespaces)
158- Authorization is only based on a regexp'ed white list with matches on the user email address
159- There is one authorization level only (no "administrators" and "editors")
160- No scheduled pull or fetch from the remote is provided (because handling conflicts would be a bit too... _interesting_)
161
162Please note that at the moment it is quite "risky" to have someone else, other than jingo itself, have write access to the remote / branch jingo is pushing to. The push operation is supposed to always be successfull and there is no pull or fetch. You can of course manage to handle pull requests yourself.
163
164Customization
165-------------
166
167You can customize jingo in four different ways:
168
169- add a left sidebar to every page: just add a file named `_sidebar.md` containing the markdown you want to display to the repository. You can edit or create the sidebar from Jingo itself, visiting `/wiki/_sidebar` (note that the title of the page in this case is useless)
170- add a footer to every page: the page you need to create is `_footer.md` and the same rules for the sidebar apply
171- add a custom CSS file, included in every page as the last file. The default name of the file is `_style.css` and it must reside in the document directory (but can stay out of the repo). It is not possible to edit the file from jingo itself
172- add a custom JavaScript file, included in every page as the last JavaScript file. The default name of the file is `_script.js` and it must reside in the document directory (but can stay out of the repo). It is not possible to edit the file from jingo itself
173
174All these names are customizable via the `customizations` option in the config file (see [the reference](#configuration-options-reference)).
175
176Once read, all those files are cached (thus, not re-read for every page load, but kept in memory). This means that for every modification in _style.css and _script.js you need to restart the server (sorry, working on that).
177
178This is not true for the footer and the sidebar but ONLY IF you edit those pages from jingo (which in that case will clear the cache by itself).
179
180Editing
181-------
182
183To link to another Jingo wiki page, use the Jingo Page Link Tag.
184
185 [[Jingo Works]]
186
187The above tag will create a link to the corresponding page file named `jingo-works.md`. The conversion is as follows:
188
189 1. Replace any spaces (U+0020) with dashes (U+002D)
190 2. Replace any slashes (U+002F) with dashes (U+002D)
191
192If you'd like the link text to be something that doesn't map directly to the page name, you can specify the actual page name after a pipe:
193
194 [[How Jingo works|Jingo Works]]
195
196The above tag will link to `Jingo-Works.md` using "How Jingo Works" as the link text.
197
198Images
199------
200
201If you put images into the repository, Jingo will be able to serve them. You can enable Jingo to serve even other file types from the document directory: you need to change the `staticWhitelist` configuration option.
202
203Configuration options reference
204-------------------------------
205
206#### application.title (string: "Jingo")
207
208 This will be showed on the upper left corner of all the pages, in the main toolbar
209
210#### application.logo (string: "")
211
212 Supply the full URL to an image to be shown as the logo of your wiki. It will appear on the left of the page title in the navigation bar. Just set the `application.title` to an empty string to only show the Logo image. Please note that Jingo does not resize the image in any way (you can do it yourself using a custom CSS of course)
213
214#### application.favicon (string: "")
215
216 Supply the full URL to an image to be shown as the favicon of your wiki. Please note that Jingo will try to get the mime type of the image from its extension (this can easily fail for a lot of reasons)
217
218#### application.repository (string: "")
219
220 Absolute path for your documents repository (mandatory).
221
222#### application.docSubdir (string: "")
223
224 If your documents reside inside a directory of the repository, specify its name here.
225
226#### application.remote (string: "")
227
228 This is the name of the remote you want to push/pull to/from (optional). You can also specify a specific branch using the syntax “remotename branchname”. If you don’t specify a branch, Jingo will use master.
229
230#### application.pushInterval (integer: 30)
231
232 Jingo will try to push to the remote (if present) every XX seconds
233
234#### application.secret (string: "change me")
235
236 Just provide a string to be used to crypt the session cookie
237
238#### application.git (string: "git")
239
240 You can specify a different git binary, if you use more than one in your system
241
242#### application.skipGitCheck (boolean: false)
243
244 Jingo will refuse to start if a version of git is found which is known to be problematic. You can still force it to start anyway, providing `true` as the value for this option
245
246#### application.loggingMode (integer: 1)
247
248 Specifies how verbose the http logging should be. Accepts numeric values: `0` for no logging at all, `1` for the a combined log and `2` for a coincise, coloured log (good for development)
249
250#### application.pedanticMarkdown (boolean: true)
251
252 (the default was `false` in jingo < 1.1.0)
253
254 The markdown module we use (Marked) tries to overcome some "obscure" problems with the original Perl markdown parser by default. This produces some problems when rendering HTML embedded in a markdown document (see also issue https://github.com/claudioc/jingo/issues/48). By default we now want to use the original parser and not the modified one (pedantic: true).
255
256 With this option you can revert this decision if for some reason your documents are not rendered how you like.
257
258#### application.gfmBreaks (boolean: true)
259
260 Enable [GFM line breaks](https://help.github.com/articles/github-flavored-markdown#newlines)
261
262#### application.proxyPath (string: "")
263
264 If you want jingo to work "behind" another website (for example in a /wiki directory of an already existing intranet), you need to configure it to be aware of that situation so that it can write all the outbound URLs accordingly. Use this option to pass it the name of the directory that you've configured in your proxy_pass option in nginx or apache. See also an nginx example in the /etc directory of the jingo source distribution.
265
266 Please note that jingo won't work correctly if this option is activated.
267
268#### authentication.staticWhitelist (string: "/\\.png$/i, /\\.jpg$/i, /\\.gif$/i")
269
270 This is to enable jingo to serve any kind of static file (like images) from the repository. By default, Jingo will serve `*.md` files and `*.jpg, *.png, *.gif`. Provide the values as a comma separated list of regular expressions.
271
272#### authentication.google.enabled (boolean: true)
273
274 Enable or disable authentication via Google logins
275
276#### authentication.google.clientId
277#### authentication.google.clientSecret
278
279 Values required for Google OAuth2 authentication. Refer to a previous section of this document on how to set them up.
280
281#### authentication.google.redirectUrl (string: /oauth2callback)
282
283 Specifies a custom redirect URL for OAuth2 authentication instead of the default
284
285#### authentication.github.enabled (boolean: false)
286
287 Enable or disable authentication via Github logins
288
289#### authentication.github.clientId
290#### authentication.github.clientSecret
291
292 Values required for GitHub OAuth2 authentication. Refer to a previous section of this document on how to set them up.
293
294#### authentication.google.redirectUrl (string: /auth/github/callback)
295
296 Specifies a custom redirect URL for OAuth2 authentication instead of the default
297
298#### authentication.ldap.enabled (boolean: false)
299
300 Enable or disable authentication via LDAP logins
301 Requires manual installation of `passport-ldapauth` module via npm
302
303#### authentication.ldap.url
304#### authentication.ldap.bindDn
305#### authentication.ldap.bindCredentials
306#### authentication.ldap.searchBase
307#### authentication.ldap.searchFilter
308#### authentication.ldap.searchAttributes
309
310#### authentication.local.enabled (boolean: false)
311
312 The Local setup allows you to specify an array of username/password/email elements that will have access to the Wiki. All the accounts must resides in the configuration `authentication.local.accounts` array
313
314#### authentication.local.[accounts].username
315
316 Provide any username you like, as a string
317
318#### authentication.local.[accounts].passwordHash
319
320 Use an hash of your password. Create the hash with `jingo -# yourpassword`
321
322#### authentication.local.[accounts].email
323
324 If you want to use Gravatar, provide your gravatar email here.
325
326#### authentication.alone.enabled (deprecated)
327
328 Boolean, defaults to `false`
329 _The Alone authentication option is deprecated in favor of the Local one_
330
331#### authentication.alone.username (deprecated)
332
333 Provide any username you like, as a string
334 _The Alone authentication option is deprecated in favor of the Local one_
335
336#### authentication.alone.passwordHash (deprecated)
337
338 Use an hash of your password. Create the hash with `jingo -# yourpassword`
339 _The Alone authentication option is deprecated in favor of the Local one_
340
341#### authentication.alone.email (deprecated)
342
343 If you want to use Gravatar, provide your gravatar email here.
344 _The Alone authentication option is deprecated in favor of the Local one_
345
346#### features.markitup (boolean: false)
347
348 DEPRECATED: markitup support has been removed as of version 1.8.0
349
350#### features.codemirror (boolean: true)
351
352 Whether to enable Codemirror or not.
353
354#### features.gravatar (boolean: true)
355
356 Whether to enable gravatar support or not
357
358#### server.hostname
359
360 This is the hostname used to build the URL for your wiki pages. The reason for these options to exist is due to the need for the OAuth2 authentication to work (it needs an endpoint to get back to)
361
362#### server.port
363
364 Jingo will listen on this port
365
366#### server.localOnly
367
368 Set this to `true` if you want to accept connection only _from_ localhost (default false)
369
370#### server.CORS.enabled (boolean: false)
371
372 Enable or disable CORS headers for accessing a page through an ajax call from an origin which is not the one which serves Jingo. Use this option if for example you want to embed a (rendered) page inside a page of another website.
373
374 The configuration options for CORS are at the moment quite limited: via an Ajax call you can only read (GET) a wiki page (that is, the /wiki/NameOfYourPage path), or issue a search. Once you enable this option, all the wiki page will be accessible. Please note that no authentication check is made, which means that the Ajax calls will be denied if the `anonRead` configuration option will be `false` (all or nothing).
375
376 You can also white-list origin via the following option (CORS.allowedOrigin)
377
378#### server.CORS.allowedOrigin (string: "*")
379
380 Set the allowed origin for your CORS headers. All the Ajax calls to the wiki pages must come from this origin or they will be denied. The default is "*", which means that all the origins will be allowed
381
382#### server.baseUrl
383
384 The baseUrl is usually automatically generated by Jingo (with "//" + hostname + ":" + port), but if for some reason you need to overrideit, you can use this option
385
386#### authorization.anonRead (boolean: true)
387
388 Enables/disables the anonymous access to the wiki content
389
390#### authorization.validMatches (string: ".+")
391
392 This is a regular expression which will be used against the user email account to be able to access the wiki. By default all emails are OK, but you can for example set a filter so that only the hostname from your company will be allowed access.
393
394#### authorization.emptyEmailMatches (boolean: false)
395
396 If the endpoint doesn't provide the email address for the user, allow empty emails to authenticate anyway. Note that GitHub authentication usually requires this to be `true` (unless all wiki users have public email addresses on their GitHub accounts).
397
398#### pages.index (string: "Home")
399
400 Defines the page name for the index of the wiki
401
402#### pages.title.fromFilename (boolean: true)
403
404 If this is true, the title of each page will be derived from the document's filename. This is how Gollum works and from Jingo 1.0 this is now the default. An important consequence of this behavior is that now Jingo is able _to rename_ documents (according to the new name it will be eventually given to), while previously it was impossible.
405
406#### pages.title.fromContent (boolean: false)
407
408 If this is true, the title of the document will be part of the document itself (the very first line). This is the default behavior of Jingo < 1.0 and the default is now false. If you have an old installation of Jingo, please set this value to true and `fromFilename` to false.
409
410#### pages.title.asciiOnly (boolean: false)
411
412 If this is set to true, Jingo will convert any non-Ascii character present in the title of the document to an ASCII equivalent (using the transliteration module), when creating the filename of the document. Default was true for Jingo < 1.0 while for Jingo >= 1.0 the default is false
413
414#### pages.title.lowercase (boolean: false)
415
416 If this is set to true, Jingo will lowercase any character of the title when creating the filename. Default was true for Jingo < 1.0 while for Jingo >= 1.0 the default is false
417
418#### pages.title.itemsPerPage (integer: 10)
419
420 This defines how many page item to show in the "list all page" page. Keep this value as low as possible for performance reasons.
421
422#### customizations.sidebar (string: "_sidebar.md")
423
424 Defines the name for the _sidebar_ component. Defaults to `_sidebar.md`. Please note that if you need to use a wiki coming from Github, this name should be set to `_Sidebar`
425
426#### customizations.footer (string: "_footer.md")
427
428 Defines the name for the _footer_ component. Defaults to `_footer.md`. Please note that if you need to use a wiki coming from Github, this name should be set to '_Footer'
429
430#### customizations.style (string: "_style.md")
431
432 Defines the name for the customized _style_ CSS component. Defaults to `_style.css`.
433
434#### customizations.script (string: "_script.md")
435
436 Defines the name for the customized _script_ JavaScript component. Defaults to `_script.js`.