@d7om/md-watch 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +60 -0
  3. package/dist/md.js +489 -0
  4. package/package.json +42 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 d7om
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,60 @@
1
+ # md-watch
2
+
3
+ A fast local Markdown preview server with live reload, syntax highlighting, and themes.
4
+
5
+ ![md-watch.png](README-img/md-watch.png)
6
+
7
+ ## Features
8
+
9
+ - **15+ themes** — Gruvbox, Tokyo Night, Rosé Pine, Nord, Dracula, Solarized, and more
10
+ - **Syntax highlighting** for 180+ languages via highlight.js
11
+ - **Table of contents** sidebar auto-built from headings
12
+ - **Live reload** — page reloads instantly on file save
13
+ - **Video embedding** — `![](video.mp4)` renders as `<video>`; resolves `../../` relative paths
14
+ - **Code copy buttons**
15
+ - **Adjustable content width**
16
+ - **Links open in new tab** (anchor links scroll in-page)
17
+
18
+ ## Requirements
19
+
20
+ Node.js 18+
21
+
22
+ ## Install
23
+
24
+ ```sh
25
+ npm install -g @d7om/md-watch
26
+ ```
27
+
28
+ Registers both `md` and `md-watch` commands.
29
+
30
+ Or download the standalone script from [Releases](https://github.com/d7omdev/md-watch/releases/latest):
31
+
32
+ ```sh
33
+ curl -fsSL https://github.com/d7omdev/md-watch/releases/latest/download/md.js -o ~/.local/bin/md
34
+ chmod +x ~/.local/bin/md
35
+ ```
36
+
37
+ ## Usage
38
+
39
+ ```sh
40
+ md <file.md> [port]
41
+ md-watch <file.md> [port]
42
+ ```
43
+
44
+ Opens a live preview at `http://localhost:8123`. The page auto-reloads whenever the file changes.
45
+
46
+ ```sh
47
+ md README.md # port 8123 (default)
48
+ md README.md 3000 # custom port
49
+ ```
50
+
51
+ ## Build from source
52
+
53
+ ```sh
54
+ bun install
55
+ bun run build # outputs dist/md.js
56
+ ```
57
+
58
+ ## License
59
+
60
+ MIT © [d7om](mailto:hello@d7om.dev)