Another note taking app? Why yes it is. I found this one over on Reddit recently and have been using it since. It’s fast, simple and I really just like the way it looks.

Features:

  • Markdown (GitHub Flavored Markdown, see spec here)
  • HTML sanitization, minimizing XSS attacks
  • Mobile Friendly
  • Friendly “Slug” based URLs for cleaner links
  • Dark & Light Theme
  • Notebook Sharing
  • Custom flat-file based storage system (easy to backup and synchronize)
  • Multiple views for a note (rendered, plain)
  • Editor with shortcuts


Docker Compose

volumes:
  data:

services:
  backend:
    image: ghcr.io/enchant97/note-mark-backend:0.7.0

    restart: unless-stopped
    volumes:
      - data:/data
    environment:
      # !!! REPLACE These !!!
      JWT_SECRET: "REPLACE.WITH.SECRET"
      CORS_ORIGINS: "ip.address.to.host"
    ports:
      - 8001:8000

  frontend:
    image: ghcr.io/enchant97/note-mark-frontend:0.7.0

    restart: unless-stopped
    ports:
      - 8888:8000

Visit: http://your.ip.address:8000/ and change the API port to 8001


Demo & Install Video