Crates.io | cargo-markdown |
lib.rs | cargo-markdown |
version | 1.0.3 |
source | src |
created_at | 2022-01-12 13:47:49.573071 |
updated_at | 2022-01-20 20:23:48.932407 |
description | Local crates.io readme development server with ultra-fast hot reloading goodness |
homepage | |
repository | https://github.com/rrrodzilla/cargo-registry-preview |
max_upload_size | |
id | 512786 |
size | 789,932 |
A cargo subcommand to preview your crate's readme file within your default browser in a near-pixel-perfect hot reloading mockup of the crates.io website.
Make sure you have Rust and Cargo installed, then install with:
cargo install cargo-markdown
From your project directory, run:
# your readme file must already exist at the path you specify
cargo markdown ./readme.md
Open your browser to the address given and you'll see your readme file in a mockup of the crates.io website.
Now you can edit your readme file in the editor of your choice. Each time you save the file, the preview web page will hot reload immediately.
--open
flagUSAGE:
cargo markdown [OPTIONS] <README> [PORT]
ARGS:
<README> π The path to your readme file
<PORT> π’ The port used by the preview server [default: 8080]
<OPTIONS>
-h, --help β Print help information
-p, --port <PORT> π’ The port used by the preview server [default: 8080]
--host <HOSTNAME> π¨ The hostname used by the hot-reload server [default: 127.0.0.1]
-o, --open <open> π Automagically open your browser on startup [default: false]
-V, --version π¬ Print version information
Simply pass the --open
flag to have cargo-markdown automatically open your default browser on startup.
Don't pass --open
if you don't want your browser to automatically open. You can browse to the displayed url on your own. This is great for when you already have a tab open to your preview website but you've closed down cargo-markdown. When you re-open cargo-markdown any tabs you have open will automatically reconnect within 5 seconds.
You can use a tool like ngrok to open a public url to your local preview site and then connect to it on your mobile device (or any other device with internet access).
Once you have ngrok installed on your system, run it like so:
./ngrok http 8080
ngrok will show you a public url to your localhost:8080 address.
Now simply run cargo-markdown passing in the host from ngrok.
cargo markdown readme.md --host 62cf2a5454d8.ngrok.io
You can now use another machine or a mobile device to access your crates.io mockup on another device complete with hot reloading by browsing to: http://62cf2a5454d8.ngrok.io (or whatever address ngrok gave you)
note: hot reload over ngrock might be slower since the site is reloading over the internet and via a proxy instead of directly from localhost
β Star https://github.com/rrrodzilla/cargo-registry-preview
π¦ Follow https://twitter.com/rrrodzilla