Has anyone implemented a wiki in NodeJS? [closed]
I'm looking for a pure javascript, open-sourced, wiki implementation, preferably one using NodeJS. Wher开发者_如何学Ce might I find it?
I'd suggest jingo thanks to its nice design (with very sane typography), use of git as backing datastore, format compatibility with the markdown format used by github (gollum), and the fact that it's somewhat actively developed.
As of Jan 2017, Matterwiki is also actively developed.
Wiki.js is also being actively developed. It's using a git datastore, has a markdown editor, search engine and assets management.
Tiddlywiki can generate static HTML.
Npmjs and GitHub reveal only two other relatively popular and somewhat active projects: openKB and Hazel.
Wikipedia shows mostly the same JS wiki engines, plus Grokla, which is closed source.
Wikimatrix lists 7 wiki engines powered by JavaScript.
Old answer: https://github.com/gjritter/nodewiki (no updates since 2010).
http://nodebits.org/wiki-challenge
Uses file system https://github.com/nodebits/wiki-challenge
Git based wiki system for markdown files https://github.com/nhoss2/nodewiki
Git based https://github.com/claudioc/jingo
Here's a very recent Node.js one: https://github.com/milani/node-gitwiki. Needs work I think.
But if you just want HTML5+CSS+JavaScript, then http://www.tiddlywiki.com/ does without a remote server, all via an in-browser web app. Pretty cool :-)
精彩评论