Möbius OS

← All apps

Notes

Markdown notes that render as you type, with checklists, pins, colors, search, and images.

Works offline
v1.2.27 by mobius-os MIT Source ↗ ★ 0 updated 2026-07-16

Install

Open the App Store mini-app in your Möbius shell and paste:

https://raw.githubusercontent.com/mobius-os/app-notes/main/mobius.json

Möbius shows the requested permissions and the cron schedule, then installs.

Runtime libraries

This app loads the following ES modules from esm.sh on first open:

Manifest

Show mobius.json
{
  "id": "notes",
  "name": "Notes",
  "version": "1.2.27",
  "description": "Markdown notes that render as you type, with checklists, pins, colors, search, and images.",
  "author": "mobius-os",
  "license": "MIT",
  "homepage": "https://github.com/mobius-os/app-notes",
  "entry": "index.jsx",
  "icon": "icon.png",
  "offline_capable": true,
  "permissions": {
    "cross_app_access": "none",
    "share_with_apps": "none"
  },
  "runtime": {
    "imports": [
      "react",
      "react-dom",
      "codemirror",
      "@codemirror/state",
      "@codemirror/view",
      "@codemirror/commands",
      "@codemirror/lang-markdown",
      "@codemirror/language",
      "@lezer/highlight",
      "katex"
    ],
    "esm_deps": [
      "marked",
      "dompurify"
    ]
  },
  "storage_seeds": {
    "notes-meta.json": {
      "app": "notes",
      "data_type": "notes",
      "format": "json",
      "note_shape": "{ meta: {frontmatter fields}, body: markdown-string }",
      "dir": "notes/",
      "index": "index.json",
      "attachments": "attachments/"
    }
  },
  "offline": {
    "reads": true,
    "writes": "queued",
    "execution": "full"
  },
  "schedule": {
    "job": "job.sh"
  }
}

Feedback

Something feel off, or want to suggest an iteration? Open an issue at app-notes/issues — the app's maintainer reads them.