Documentation Index
Fetch the complete documentation index at: https://mintlify.com/sureshamal/markview/llms.txt
Use this file to discover all available pages before exploring further.
Installation
This guide will walk you through installing MarkView from source. Whether you want to contribute to development or build the application for personal use, you’ll have MarkView up and running in minutes.Pre-built binaries are not yet available. You’ll need to build MarkView from source following the steps below.
Prerequisites
Before installing MarkView, ensure you have the following tools installed on your system:Node.js and Bun
Install Node.js
MarkView requires Node.js version 20 or later. Download and install it from the official Node.js website.Verify your installation:
Rust and Cargo
Install Rust
Tauri requires Rust version 1.77.2 or later. Install Rust using rustup:For Windows, download and run the installer from rustup.rs.
After installation, you may need to restart your terminal or run
source $HOME/.cargo/env to update your PATH.Tauri system dependencies
Tauri requires platform-specific system dependencies. Follow the instructions for your operating system:- Linux
- macOS
- Windows
Building MarkView
Now that you have all the prerequisites installed, you’re ready to build MarkView:Install dependencies
Install all Node.js dependencies using Bun:This will download and install all required packages including:
- Next.js and React
- Tauri CLI and plugins
- Markdown processing libraries
- UI dependencies
Build the application
Build the production-ready desktop executable:This command will:The build process displays progress in your terminal:
- Build the Next.js frontend with static export
- Compile the Rust backend
- Package everything into a native desktop application
The first build will take several minutes as Cargo downloads and compiles all Rust dependencies. Subsequent builds will be much faster.
Locate the binary
After the build completes, find your executable in the Linux:Windows:
src-tauri/target/release directory:macOS:Verify installation
Confirm MarkView is working correctly:Launch the application
Open MarkView from your applications menu or by running the binary from the terminal.You should see the MarkView window with an empty state prompting you to load files.
Test with a sample file
Create a test Markdown file:Drag and drop
test.md into the MarkView window. You should see the rendered content.If you encounter any issues during installation, check the Tauri prerequisites documentation for platform-specific troubleshooting.
Next steps
Now that you have MarkView installed, you’re ready to start using it!Quickstart guide
Learn how to use MarkView effectively
Development setup
Set up your development environment for contributing