markdown-studio
v0.10.2
Published
Launch Markdown Studio locally in your browser from an npm package.
Maintainers
Readme
markdown-studio
Launch Markdown Studio locally in your browser from an npm package.
Quick Start
npx markdown-studio@latestInstallation
Global Install
npm install -g markdown-studio
markdown-studioNPX (No installation)
npx markdown-studio@latestUsage
markdown-studio [options]Options
| Option | Description | Default |
| ----------------- | --------------------------------- | --------------------- |
| --host <host> | Host to bind to | 127.0.0.1 |
| --port <number> | Port to listen on | Random available port |
| --no-open | Do not open browser automatically | false |
| --version, -v | Show version number | - |
| --help, -h | Show help message | - |
Examples
Start on default host and random port (browser opens automatically):
npx markdown-studio@latestStart on specific port:
npx markdown-studio@latest --port 4173Start on all interfaces without opening browser:
npx markdown-studio@latest --host 0.0.0.0 --no-openShow version:
npx markdown-studio@latest --versionHow It Works
This package serves the production Markdown Studio web app over localhost and opens your default browser. It delivers the browser experience, not the Electron desktop shell, so native desktop-only file integration is not included.
Browser Behavior
- Chromium browsers can use the File System Access API on
localhost - Other browsers fall back to the existing picker and download flows
- The server is local-only by default because it binds to
127.0.0.1
Development
Build
vpr buildTest Locally
After building, you can test the CLI locally:
# From the packages/cli directory
node dist/cli.mjs
# Or using npx with local path
npx ./packages/cliLicense
MIT
