@knime/scripting-editor
v0.0.121
Published
Shared Scripting Editor components for KNIME
Readme
KNIME Scripting Editor Framework
Shared scripting editor components for KNIME Analytics Platform and a standalone generic scripting editor app.
Development
Prerequisites
- Node.js (see version in
package.json) - pnpm workspace (install from root:
pnpm install)
Development Modes
Standalone Mode (Browser)
Develop with mocked backend services:
pnpm run dev:browserOpens at http://localhost:5173/
KNIME Dialog Development Mode
Start KNIME Analytics Platform with:
-Dorg.knime.ui.dev.mode=true
-Dorg.knime.ui.dev.node.dialog.url=http://localhost:5173/Run the development server:
pnpm run dev:knimeNOTE: The dialog served by the development server is only visible with the the dialog mode "Open in new window".
Build
Library:
pnpm run build:lib # Production build
pnpm run build:lib:watch # Watch modeApplication:
pnpm run build:appTesting
pnpm run test:unit # Run tests
pnpm run coverage # Generate coverageCode Quality
pnpm run lint
pnpm run format