A simple command-line tool to preview Markdown files in a web browser. It serves the rendered HTML version of a Markdown file over HTTP, allowing you to easily preview your Markdown content locally.
- Serve a Markdown file as HTML via a local web server
- Automatically open the preview in your default web browser
- Auto reload on save
- Supports specifying the file path, server IP, and port via command-line arguments
- Warns when binding to
0.0.0.0to expose the server to the network - Sanitizes rendered HTML to prevent injection of unsafe content
You have three options: via Cargo, via prebuilt script, or manual install.
If you have Rust installed, you can install directly from crates.io:
cargo install mdwatchThis is the most "Rusty" and portable way.
It automatically downloads, compiles, and installs the latest version to your $HOME/.cargo/bin.
Alternative: Installs the latest release binary to your system PATH.
curl -sSfL https://raw.githubusercontent.com/santoshxshrestha/mdwatch/main/scripts/install.sh | bash- This script will:
- Build
mdwatchin release mode (if Rust is present). - Copy the binary to
/usr/local/bin. - Make it executable.
- Build
Tip: You may need to enter your password for
sudoprivileges.
If you prefer full control or want to customize the build:
-
Clone the repository:
git clone https://github.com/santoshxshrestha/mdwatch.git cd mdwatch -
Build the Release Binary:
cargo build --release
This places the binary at
target/release/mdwatch. -
Copy to a PATH directory (e.g.,
/usr/local/bin):sudo cp target/release/mdwatch /usr/local/bin/mdwatch
-
(Optional) Ensure executable permission:
sudo chmod +x /usr/local/bin/mdwatch
-
Run from anywhere:
mdwatch
If you have Nix (version 2.4 or later) with flakes enabled, you can use nix run to run mdwatch without installing Rust or any dependencies globally. You can also use nix develop to get a full development environment for hacking on the project.
nix runThis will build and run the latest version of mdwatch from the flake in the current directory. You can pass arguments as usual:
nix run . -- README.md [--ip 127.0.0.1] [--port 3000]You can also run the latest version of mdwatch directly from GitHub, without cloning the repository:
nix run github:santoshxshrestha/mdwatch -- README.md [--ip 127.0.0.1] [--port 3000]This will fetch, build, and run mdwatch from the official repository. You can pass any arguments after the -- as usual.
If you want to contribute or develop, enter a shell with all dependencies (Rust, cargo, etc) using:
nix developThis gives you a reproducible environment with everything needed to build, test, and run mdwatch.
Note:
- You need Nix 2.4+ with flakes enabled. See the Nix Flakes documentation for setup help.
- On NixOS, flakes are usually enabled by default. On other systems, you may need to add
experimental-features = nix-command flakesto your~/.config/nix/nix.conf.
You can uninstall using the provided script or manually:
curl -sSfL https://raw.githubusercontent.com/santoshxshrestha/mdwatch/main/scripts/uninstall.sh | bashRemove the binary from your PATH:
sudo rm /usr/local/bin/mdwatchor
sudo rm /usr/bin/mdwatchIf you also want to remove your cloned repository:
rm -rf ~/mdwatchIf installed with Cargo:
cargo uninstall mdwatchRun the tool with the required and optional arguments:
mdwatch README.md [--ip 127.0.0.1] [--port 3000]
-
file: Path to the Markdown file to preview (required) -
--ip: IP address to bind the server to (default: 127.0.0.1) -
--port: Port number for the server (default: 3000)
Note
If you bind to 0.0.0.0, the tool will warn you because this exposes the server to you local network.
When binding to 0.0.0.0, the preview URL opened in your browser will use localhost as the hostname.
mdwatch notes.md --ip 0.0.0.0 --port 8080This will serve the Markdown file accessible on all network interfaces and open the preview at
http://localhost:8080 in your browser.
- The rendered HTML is sanitized to prevent injection of unsafe content.
- Use caution when binding to
0.0.0.0or any public-facing IP. - This tool is intended for local development and preview purpose only.
The project is made available under the MIT license. See the LICENSE file for more information.