
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@knime/jsonforms
Advanced tools
KNIME JSONForms integrationThis repository contains the frontend components of the KNIME JSONForms integration that is based on Vue. It is built as a Vue library and used in KNIME Analytics Platform and/or KNIME Hub.
To install the @knime/jsonforms package, you can use npm:
npm install @knime/jsonforms
The vue component controlling the JSONForms instance can be imported as follows:
import { JsonFormsDialog } from "@knime/jsonforms";
It requires renderers as property, which can be constructed using a variety of defaults.
Those default components are divided into layouts and controls:
import { controls, layouts } from "@jsonforms/testing";
Use the toRenderers method to construct the final list of renderers once the chosen controls/layouts are modified in the desired way. A modification might entail replacing the tester by which this renderer is used by jsonforms or wrapping a control using higher order vue components.
Combined example:
<script setup lang="ts">
import {
controls,
layouts,
JsonFormsDialog
toRenderers
} from "@knime/jsonforms"
const renderers = toRenderers([/**
Add newly constructed renderers here
*/], [
controls.dropdownRenderer,
controls.textRenderer
], [
layouts.sectionRenderer
])
</script>
<template>
<JsonFormsDialog :data="..." ... :renderers="renderers" />
</template>
Types and utility methods for testing are made available in the following way:
import * from "@knime/jsonforms/testing"
Newer versions may also work, but have not been tested.
pnpm install
and then use the following commands. For detailed explanations see Vue CLI docs:
pnpm dev
Run unit- and integration-tests individually by
pnpm test:unit
pnpm test:integration
You can generate a coverage report with
pnpm coverage:unit
pnpm coverage:integration
The output can be found in the coverage folder. It contains a browseable html report as well as raw coverage data in
LCOV and Clover format, which can be used in analysis software (SonarQube, Jenkins, …).
Note: noisy Vue warnings are suppressed if you set the environment flag SUPPRESS_WARNINGS=true,
and they are also suppressed when running with CI=true which is set by default in most pipeline
environments.
npm provides a check against known security issues of used dependencies. Run it by calling
pnpm audit
To build the package, use the following command:
pnpm build
FAQs
Internal JSON Forms integration for frontend KNIME projects
The npm package @knime/jsonforms receives a total of 1,213 weekly downloads. As such, @knime/jsonforms popularity was classified as popular.
We found that @knime/jsonforms demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.