A modern, small wiki engine without complexity. See it in action: https://epoche.org/wiki/Epoche
- Powered by Node.js + SQLite3: all you need is
npm
- Support Markdown with unified
- Math (with MathJax)
npm install -g epoche
epoche init ./epoche.db # create & init database
epoche start --db ./epoche.db --port 3000
With pm2 (daemonize):
pm2 start epoche -- start --db ./epoche.db --port 3000
Using Nginx, Apache, or the like is recommended for load balancing etc.
epoche help
- Wiki links:
[<link text>](<page name>)
(eg.[foo bar](FooBar)
)
- Wiki-style link
- Pure ESM package (required for the newer unified.js)
- Syntax highlighting
- File uploads?
- Add tests