A collection of tools for the DA (Document Authoring) platform.
| Tool | Description |
|---|---|
| da-parser | Parser for converting DA Admin HTML to ProseMirror/YDoc format |
# Install all dependencies
npm install
# Run tests across all tools
npm test
# Lint all tools
npm run lintThis is an npm workspaces monorepo. Each tool lives in its own directory with its own package.json.
da-tools/
├── package.json # Root workspace config
├── da-parser/ # HTML → ProseMirror parser
│ ├── src/
│ ├── test/
│ └── ...
└── (future tools)
- Create a new directory at the root:
mkdir da-new-tool - Add a
package.jsonin the new directory - Add the directory name to the
workspacesarray in the rootpackage.json
Apache-2.0