Skip to content

MindNode ​

MindNode is a mind-mapping app. Protocol Launcher allows you to generate MindNode URL scheme links.

Usage ​

There are two ways to use this library:

  • On-Demand import from subpaths enables tree-shaking and keeps bundles small.
  • Full Import from the root package is convenient but includes all app modules.

Pick On-Demand for production builds; Full Import is fine for quick scripts or demos.

Select Installation Method

On-Demand
Recommended. Optimized for production.
Full Import
Convenient. Good for quick scripts.

Notes ​

MindNode's official URL scheme documentation lists mindnode://open?name=YourDocument for opening files in the MindNode iCloud container. This module only implements that documented URL format.

Open Document ​

Open a document by name from the MindNode iCloud container.

On-Demand
ts
import { openDocument } from 'protocol-launcher/mindnode'

const url = openDocument({
  name: 'YourDocument',
})

Generated URLs ​

ts
openDocument({ name: 'YourDocument' })
// => 'mindnode://open?name=YourDocument'

Official Documentation ​