[![NPM](https://nodei.co/npm/jingo.png?compact=true)](https://npmjs.org/package/jingo) [ ![Codeship Status for claudioc/jingo](https://www.codeship.io/projects/4c413870-353e-0132-115c-220292a78f73/status)](https://www.codeship.io/projects/40997) # JINGO A **git based** _wiki engine_ written for **node.js**, with a decent design, a search capability and a good typography. ![Screenshot](https://cloud.githubusercontent.com/assets/166692/26024412/f0cb9206-37d0-11e7-9748-8101fc4e662f.png) ## Table of contents - [Introduction](#introduction) - [Features](#features) - [Installation](#installation) - [Authentication and Authorization](#authentication-and-authorization) - [Known limitations](#known-limitations) - [Customization](#customization) - [Editing](#editing) - [Configuration options reference](#configuration-options-reference) ## Introduction The 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. Jingo 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. Think of jingo as "the github wiki, without github but with more features". "Jingo" means "Jingo is not Gollum" for more than one reason. There is a demo server running at http://jingo.cica.li:6067/wiki/home ![Screenshot](https://cloud.githubusercontent.com/assets/166692/26024413/f53612c6-37d0-11e7-8dd2-01c9ed993cc6.png) ## Features - No database: Jingo uses a git repository as the document archive - Markdown for everything, [github flavored](http://github.github.com/github-flavored-markdown/) - 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) - It provides a "distraction free", almost full screen editing mode - Compatible with a wiki created with the [Gollum](https://github.com/github/gollum) wiki - Revision history for all the pages (with restore) - Show differences between document revisions - Paginated list of all the pages, with a quick way to find changes between revisions - Search through the content _and_ the page names - Page layout accepts custom sidebar and footer - Gravatar support - Can include IFRAMEs in the document (es: embed a Google Drive document) - Generate Table of Contents for pages - Can use custom CSS and JavaScript scripts - White list for authorization on page reading and writing - Detects unwritten pages (which will appear in red) - Automatically push to a remote (optionally) - Mobile friendly (based on Bootstrap 3.x) - Quite configurable, but also works out of the box - Works well behind a proxy (i.e.: the wiki can be "mounted" as a directory in another website) - Pages can be embedded into another site - Authentication via Google, Github, LDAP and local name/password For 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). ![Screenshot](https://cloud.githubusercontent.com/assets/166692/26024414/f8470cb8-37d0-11e7-9c96-5193aca12591.png) ## Installation `npm install -g jingo` or download/clone the whole thing and run `npm install`. Note: if you already have Jingo installed, please also run `npm prune` (some modules can be stale and need to be removed). Jingo 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. This document contains also [the reference](#configuration-options-reference) for all the possible options. If 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: `git remote add origin https://github.com/joeuser/jingorepo.git'` Based on that example, you would update config.yaml with the remote name "origin" as follows: `remote: "origin"` You can also use the `git remote` command to get the name of your remote. You 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). The basic command to run the wiki will then be `jingo -c /path/to/config.yaml` Before 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`). If 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. If 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. If you want your wiki server to only listen to your `localhost`, set the configuration key `localOnly` to true. ![Screenshot](https://cloud.githubusercontent.com/assets/166692/26024415/fc211aea-37d0-11e7-9ae2-77ce32cedb07.png) ## Authentication and Authorization You can enable the following strategies: _Google logins (OAuth2)_, _GitHub logins (OAuth2)_, _ldap logins_ or a simple, locally verified username/password credentials match (called "local"). The _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. For Google, follow these instructions (you need to be logged in in Google): - Open the [Google developer console](https://code.google.com/apis/console/) - Create a new project (you can leave the _Project id_ as it is). This will take a little while - Open the _Consent screen_ page and fill in the details (particularly, the _product name_) - Now open _APIs & auth_ => _Credentials_ and click on _Create new client id_ - Here you need to specify the base URL of your jingo installation. Google will fill in automatically the other field with a `/oauth2callback` URL, which is fine - Now you need to copy the `Client ID` and `Client secret` in your jingo config file in the proper places For GitHub, follow these instructions (you need to be logged in in GitHub): - Register a new application [here](https://github.com/settings/applications/new) - Enter whatever `Application name` you want - Enter your installation URL (localhost is OK, for example "http://localhost:6767/") - Enter /auth/github/callback as the `Authorization callback URL` - Press the `Register application` button - In the following page, on the top right corner, take note of the values for `Client ID` and `Client Secret` - Now you need to copy the `Client ID` and `Client secret` in your jingo config file in the proper places **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`. The _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. Since we want to install the (binary) support to LDAP only when needed, please _manually_ `npm install passport-ldapauth` to use the LDAP support. The _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. You can enable all the authentications options at the same time. The `local` is disabled by default. The _authorization_ section of the config file has three keys: `anonRead`, `validMatches` and `emptyEmailMatches`. If `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. `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). The 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. ## Known limitations - The authentication is mandatory (no anonymous writing allowed). See also issue #4 - The repository is "flat" (no directories or namespaces) - Authorization is only based on a regexp'ed white list with matches on the user email address - There is one authorization level only (no "administrators" and "editors") - No scheduled pull or fetch from the remote is provided (because handling conflicts would be a bit too... _interesting_) Please 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. ## Customization You can customize jingo in four different ways: - 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) - add a footer to every page: the page you need to create is `_footer.md` and the same rules for the sidebar apply - 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 - 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 All these names are customizable via the `customizations` option in the config file (see [the reference](#configuration-options-reference)). Once 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). This 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). ## Editing To link to another Jingo wiki page, use the Jingo Page Link Tag. [[Jingo Works]] The above tag will create a link to the corresponding page file named `jingo-works.md`. The conversion is as follows: 1. Replace any spaces (U+0020) with dashes (U+002D) 2. Replace any slashes (U+002F) with dashes (U+002D) If 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: [[How Jingo works|Jingo Works]] The above tag will link to `Jingo-Works.md` using "How Jingo works" as the link text. ## Images If 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. ## Configuration options reference #### application.title (string: "Jingo") This will be showed on the upper left corner of all the pages, in the main toolbar #### application.logo (string: "") 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) #### application.favicon (string: "") 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) #### application.repository (string: "") Absolute path for your documents repository (mandatory). #### application.docSubdir (string: "") If your documents reside inside a directory of the repository, specify its name here. #### application.remote (string: "") 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. #### application.pushInterval (integer: 30) Jingo will try to push to the remote (if present) every XX seconds #### application.secret (string: "change me") Just provide a string to be used to crypt the session cookie #### application.git (string: "git") You can specify a different git binary, if you use more than one in your system #### application.skipGitCheck (boolean: false) 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 #### application.loggingMode (integer: 1) 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) #### application.pedanticMarkdown (boolean: true) (the default was `false` in jingo < 1.1.0) 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). With this option you can revert this decision if for some reason your documents are not rendered how you like. #### application.gfmBreaks (boolean: true) Enable [GFM line breaks](https://help.github.com/articles/github-flavored-markdown#newlines) #### application.proxyPath (string: "") 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. Please note that jingo won't work correctly if this option is activated. #### application.allowHtml (boolean: false) New since version 1.9.0 Since version 1.9.0 Jingo sanitizes HTML by default, escaping it while rendering Markdown. Esplicitely enable html rendering again with the `allowHtml` option set to `true`. Remember that this will also enable, among all the other HTML elements, rendering of `