Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.73 KB

File metadata and controls

38 lines (29 loc) · 1.73 KB

MdWrk Examples

Standalone package-consumption examples

Hits Downloads Node License: Apache-2.0

The examples tree contains small applications that consume MdWrk packages through their public package interfaces rather than private workspace internals.

Why

Good package ecosystems prove that the published API shape works outside the first-party app. These examples do that validation work.

What

  • editor-basic/ for source editing plus renderer integration.
  • renderer-basic/ for renderer-only consumption.
  • A boundary check that reinforces package API usage instead of internal imports.

Installation

Node.js 20.x through 22.x, matching the workspace engine contract in the root package manifest.

npm install

Usage

npm run build -w @mdwrk/example-renderer-basic
npm run build -w @mdwrk/example-editor-basic

Related